Changeset 8a95629 for src/Tests/Syntax/Attributes.c
- Timestamp:
- Jun 10, 2015, 2:26:44 PM (9 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, string, with_gc
- Children:
- b1d6dd5, b5c5684
- Parents:
- 0b2961f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Tests/Syntax/Attributes.c
r0b2961f r8a95629 21 21 return 7; 22 22 } 23 24 int @voon; 25 double @voon; 26 27 int @bort(int); 28 int @bort(double); 29 30 void g( int ); 31 32 void f() { 33 float x; 34 double x; 35 @bort(x); 36 @bort(int); 37 g( @voon ); 38 } 39 40 // Local Variables: // 41 // tab-width: 4 // 42 // End: //
Note: See TracChangeset
for help on using the changeset viewer.