Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Tests/Scope.c

    r55ba7339 rb1d6dd5  
    33typedef float t;
    44y z;
    5 otype u = struct { int a; double b; };
     5type u = struct { int a; double b; };
    66int f( int y );
    77y q;
    88
    99y w( y y, u v ) {
    10         otype x | { x t(u); };
     10        type x | { x t(u); };
    1111        u u = y;
    1212        x z = t(u);
     
    1515y p;
    1616
    17 context has_u( otype z ) {
     17context has_u( type z ) {
    1818        z u(z);
    1919};
    2020
    21 forall( otype t | has_u( t ) )
     21forall( type t | has_u( t ) )
    2222y q( t the_t ) {
    2323        t y = u( the_t );
Note: See TracChangeset for help on using the changeset viewer.