Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/examples/ctxts.c

    r4040425 r58b5d03  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar  2 18:10:21 2016
    13 // Update Count     : 3
     12// Last Modified On : Fri Jun 10 15:18:33 2016
     13// Update Count     : 4
    1414//
    1515
    16 trait has_f( type T ) {
     16trait has_f( otype T ) {
    1717        T f( T );
    1818};
    1919
    20 trait has_g( type U | has_f( U ) ) {
     20trait has_g( otype U | has_f( U ) ) {
    2121        U g( U );
    2222};
    2323
    24 forall( type V | has_g( V ) ) void h( V );
     24forall( otype V | has_g( V ) ) void h( V );
    2525
    2626// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.