ADT
        aaron-thesis
        arm-eh
        ast-experimental
        cleanup-dtors
        deferred_resn
        demangler
        enum
        forall-pointer-decay
        jacob/cs343-translation
        jenkins-sandbox
        new-ast
        new-ast-unique-expr
        new-env
        no_list
        persistent-indexer
        pthread-emulation
        qualifiedEnum
        resolv-new
        with_gc
      
      
        
          | 
            Last change
 on this file since 4b97770 was             e757af2, checked in by Thierry Delisle <tdelisle@…>, 9 years ago           | 
        
        
          | 
             
renamed all tests to lower-case leading character 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            1.6 KB
           | 
        
      
      
| Line |   | 
|---|
| 1 | int ?=?( int*, int );
 | 
|---|
| 2 | float ?=?( float*, float );
 | 
|---|
| 3 | int * ?=?( int **, int * );
 | 
|---|
| 4 | float * ?=?( float **, float * );
 | 
|---|
| 5 | char ?=?( char*, char );
 | 
|---|
| 6 | void (* ?=?( void (**)(void), void (*)(void) ))(void);
 | 
|---|
| 7 | 
 | 
|---|
| 8 | void g1() {
 | 
|---|
| 9 |         forall( otype T ) T f( T );
 | 
|---|
| 10 |         void f( int );
 | 
|---|
| 11 |         void h( void (*p)(void) );
 | 
|---|
| 12 | 
 | 
|---|
| 13 |         int x;
 | 
|---|
| 14 |         void (*y)(void);
 | 
|---|
| 15 |         char z;
 | 
|---|
| 16 |         float w;
 | 
|---|
| 17 | 
 | 
|---|
| 18 |         f( x );
 | 
|---|
| 19 |         f( y );
 | 
|---|
| 20 |         f( z );
 | 
|---|
| 21 |         f( w );
 | 
|---|
| 22 |         h( f( y ) );
 | 
|---|
| 23 | }
 | 
|---|
| 24 | 
 | 
|---|
| 25 | void g2() {
 | 
|---|
| 26 |         forall( otype T ) void f( T, T );
 | 
|---|
| 27 |         forall( otype T, otype U ) void f( T, U );
 | 
|---|
| 28 | 
 | 
|---|
| 29 |         int x;
 | 
|---|
| 30 |         float y;
 | 
|---|
| 31 |         int *z;
 | 
|---|
| 32 |         float *w;
 | 
|---|
| 33 | 
 | 
|---|
| 34 |         f( x, y );
 | 
|---|
| 35 |         f( z, w );
 | 
|---|
| 36 |         f( x, z );
 | 
|---|
| 37 | }
 | 
|---|
| 38 | 
 | 
|---|
| 39 | typedef forall ( otype T ) int (*f)( int );
 | 
|---|
| 40 | 
 | 
|---|
| 41 | forall( otype T )
 | 
|---|
| 42 | void swap( T left, T right ) {
 | 
|---|
| 43 |         T temp = left;
 | 
|---|
| 44 |         left = right;
 | 
|---|
| 45 |         right = temp;
 | 
|---|
| 46 | }
 | 
|---|
| 47 | 
 | 
|---|
| 48 | trait sumable( otype T ) {
 | 
|---|
| 49 |         const T 0;
 | 
|---|
| 50 |         T ?+?(T, T);
 | 
|---|
| 51 |         T ?++(T);
 | 
|---|
| 52 |         [T] ?+=?(T,T);
 | 
|---|
| 53 | };
 | 
|---|
| 54 | 
 | 
|---|
| 55 | otype T1 | { const T1 0; T1 ?+?(T1, T1); T1 ?++(T1); [T1] ?+=?(T1,T1); },
 | 
|---|
| 56 |         T2(otype P1, otype P2 ),
 | 
|---|
| 57 |         T3 | sumable(T3);
 | 
|---|
| 58 | 
 | 
|---|
| 59 | otype T2(otype P1, otype P2) | sumable(T2(P1,P2)) = struct { P1 i; P2 j; };
 | 
|---|
| 60 | 
 | 
|---|
| 61 | T2(int, int) w1;
 | 
|---|
| 62 | typedef T2(int, int) w2;
 | 
|---|
| 63 | w2 g2;
 | 
|---|
| 64 | otype w3 = T2(int, int);
 | 
|---|
| 65 | w3 g3;
 | 
|---|
| 66 | 
 | 
|---|
| 67 | forall( otype T | sumable( T ) )
 | 
|---|
| 68 | T sum( int n, T a[] ) {
 | 
|---|
| 69 |         T total = 0;
 | 
|---|
| 70 |         int i;
 | 
|---|
| 71 |         for ( i = 0; i < n; i += 1 )
 | 
|---|
| 72 |                 total = total + a[i];
 | 
|---|
| 73 |         return total;
 | 
|---|
| 74 | }
 | 
|---|
| 75 | 
 | 
|---|
| 76 | forall( otype T | { const T 0; T ?+?(T, T); T ?++(T); [T] ?+=?(T,T); } )
 | 
|---|
| 77 | T twice( T t ) {
 | 
|---|
| 78 |         return t + t;
 | 
|---|
| 79 | }
 | 
|---|
| 80 | 
 | 
|---|
| 81 | forall( otype T | { const T 0; int ?!=?(T, T); int ?<?(T, T); } )
 | 
|---|
| 82 | T min( T t1, T t2 ) {
 | 
|---|
| 83 |         return t1 < t2 ? t1 : t2;
 | 
|---|
| 84 | }
 | 
|---|
| 85 | 
 | 
|---|
| 86 | int main() {
 | 
|---|
| 87 |         int x = 1, y = 2, a[10];
 | 
|---|
| 88 |         float f;
 | 
|---|
| 89 | 
 | 
|---|
| 90 |         swap( x, y );
 | 
|---|
| 91 |         twice( x );
 | 
|---|
| 92 |         f = min( 4.0, 3.0 );
 | 
|---|
| 93 |         sum( 10, a );
 | 
|---|
| 94 | }
 | 
|---|
| 95 | 
 | 
|---|
| 96 | // Local Variables: //
 | 
|---|
| 97 | // tab-width: 4 //
 | 
|---|
| 98 | // End: //
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.