Ignore:
Timestamp:
Jun 5, 2015, 9:34:43 AM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
59db689
Parents:
44b5ca0
Message:

regression testing, second attempt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Tests/ResolvExpr/Rank2.c

    r44b5ca0 ra65d92e  
    1 int ?=?( int*, int );
    2 forall(dtype DT) DT*            ?=?( DT *          *,            DT* );
     1int ?=?( int *, int );
     2forall(dtype DT) DT * ?=?( DT **, DT * );
    33
    4 void a()
    5 {
    6   forall( type T ) void f( T );
    7   void g( forall( type U ) void p( U ) );
    8   g( f );
     4void a() {
     5        forall( type T ) void f( T );
     6        void g( forall( type U ) void p( U ) );
     7        g( f );
    98}
    109
    11 void g()
    12 {
    13   void h( int *null );
    14   forall( type T ) T id( T );
    15   forall( dtype T ) T *0;
    16   int 0;
    17   h( id( id( id( 0 ) ) ) );
     10void g() {
     11        void h( int *null );
     12        forall( type T ) T id( T );
     13        forall( dtype T ) T *0;
     14        int 0;
     15        h( id( id( id( 0 ) ) ) );
    1816}
     17
     18// Local Variables: //
     19// tab-width: 4 //
     20// End: //
Note: See TracChangeset for help on using the changeset viewer.