Changes in src/Tests/Context.c [55ba7339:b1d6dd5]
- File:
-
- 1 edited
-
src/Tests/Context.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Tests/Context.c
r55ba7339 rb1d6dd5 1 context has_q( otype T ) {1 context has_q( type T ) { 2 2 T q( T ); 3 3 }; 4 4 5 forall( otype z | has_q( z ) ) void f() {6 context has_r( otype T, otype U ) {5 forall( type z | has_q( z ) ) void f() { 6 context has_r( type T, type U ) { 7 7 T r( T, T (T,U) ); 8 8 }; 9 9 10 extern otype x, y | has_r( x, y );10 extern type x, y | has_r( x, y ); 11 11 } 12 12
Note:
See TracChangeset
for help on using the changeset viewer.