Changes in tests/forall.cfa [39d9b32:68b52b0]
- File:
-
- 1 edited
-
tests/forall.cfa (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/forall.cfa
r39d9b32 r68b52b0 1 // 1 // 2 2 // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo 3 3 // 4 4 // The contents of this file are covered under the licence agreement in the 5 5 // file "LICENCE" distributed with Cforall. 6 // 7 // forall.cfa -- 8 // 6 // 7 // forall.cfa -- 8 // 9 9 // Author : Peter A. Buhr 10 10 // Created On : Wed May 9 08:48:15 2018 … … 12 12 // Last Modified On : Sat Jun 5 10:06:08 2021 13 13 // Update Count : 36 14 // 14 // 15 15 16 16 void g1() { … … 45 45 } 46 46 47 // commented this out since it is not clearly meaningful 48 // and not really representable in the ast 49 // typedef forall ( T ) int (* f)( int ); 47 typedef forall ( T ) int (* f)( int ); 50 48 51 49 forall( T ) … … 172 170 } 173 171 174 forall( T | { T ?+?( T, T ); } ) forall( S | { T ?+?( T, S ); } ) 172 forall( T | { T ?+?( T, T ); } ) forall( S | { T ?+?( T, S ); } ) 175 173 struct XW { T t; }; 176 174 XW(int,int) xww;
Note:
See TracChangeset
for help on using the changeset viewer.