Changeset 4dcea3f for src/tests/typedef.c
- Timestamp:
- Jun 28, 2016, 3:33:05 PM (10 years ago)
- 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, with_gc
- Children:
- 982d63f
- Parents:
- e39aa0f (diff), 2e04c7b3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
src/tests/typedef.c (moved) (moved from src/tests/Typedef.c ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/typedef.c
re39aa0f r4dcea3f 2 2 3 3 void f( void ) { 4 int T( T );4 int T( T p ) { return 3; } 5 5 T( 3 ); 6 6 } … … 38 38 typedef [ int, int ] tupleType; 39 39 typedef * [ int, int ] tupleTypePtr; 40 typedef * int a, b;40 typedef * int c, d; 41 41 typedef [ int ] f( * int ), g; 42 42 typedef [ * [static 10] int ] t; 43 typedef [ * [static 10] int x ] f();43 typedef [ * [static 10] int x ] h(); 44 44 45 45 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.