Changes in src/Tests/Scope.c [55ba7339:b1d6dd5]
- File:
-
- 1 edited
-
src/Tests/Scope.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Tests/Scope.c
r55ba7339 rb1d6dd5 3 3 typedef float t; 4 4 y z; 5 otype u = struct { int a; double b; };5 type u = struct { int a; double b; }; 6 6 int f( int y ); 7 7 y q; 8 8 9 9 y w( y y, u v ) { 10 otype x | { x t(u); };10 type x | { x t(u); }; 11 11 u u = y; 12 12 x z = t(u); … … 15 15 y p; 16 16 17 context has_u( otype z ) {17 context has_u( type z ) { 18 18 z u(z); 19 19 }; 20 20 21 forall( otype t | has_u( t ) )21 forall( type t | has_u( t ) ) 22 22 y q( t the_t ) { 23 23 t y = u( the_t );
Note:
See TracChangeset
for help on using the changeset viewer.