~eda-qa/leaflang/master

« back to all changes in this revision

Viewing changes to share/unit_tests/block/parametric/function/type_infer_return.lfb

  • Committer: edA-qa mort-ora-y
  • Date: 2018-02-25 08:05:17 UTC
  • mfrom: (106.1.27 error_msgs)
  • Revision ID: eda-qa@disemia.com-20180225080517-sspafdjts2vqu90t
 merging error_msgs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* EXPECT(A) */
 
2
defn pine = ( a ) -> ( : type_infer(a) ) {
 
3
        return a
 
4
}
 
5
 
 
6
trace( pine('A') )
 
7