1.2.35. test/regress/rt-1.01.35

Start felix section to test/regress/rt-1.01.35-0.flx[1 /1 ]
     1: #line 1347 "./lpsrc/flx_regress.pak"
     2: //Check applicative types
     3: #import <flx.flxh>
     4: 
     5: open module Foo
     6: {
     7:   typedef foo = int;
     8:   fun _ctor_foo () => 5;
     9:   val x = foo ();
    10:   print x; endl;
    11: }
    12: 
    13: val y = Foo::foo ();
    14: print y; endl;
    15: 
    16: val z = foo ();
    17: print z; endl;
End felix section to test/regress/rt-1.01.35-0.flx[1]
Start data section to test/regress/rt-1.01.35-0.expect[1 /1 ]
     1: 5
     2: 5
     3: 5
End data section to test/regress/rt-1.01.35-0.expect[1]