source: src/tests/declarationErrors.c@ b7ea418

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox memory 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 b7ea418 was 950f7a7, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

Refactored declarations tests to be a little more complete

  • Property mode set to 100644
File size: 994 bytes
Line 
1const short static int volatile x4;
2const static volatile short int x4;
3static short int volatile static const x9; // duplicate static
4struct { int i; } const static volatile static x18; // duplicate static
5struct { int i; } const static volatile static volatile x19; // duplicate static & volatile
6typedef int Int;
7static Int volatile static const x28; // duplicate static
8
9const static inline const volatile int f01(); // duplicate const
10volatile inline const volatile static int f02(); // duplicate volatile
11const inline const volatile int static f03(); // duplicate const
12volatile inline static const volatile int f04(); // duplicate volatile
13const static const inline volatile int f05(); // duplicate const
14volatile static const volatile inline int f06(); // duplicate volatile
15const static const volatile int inline f07(); // duplicate const
16volatile static const int inline volatile f08(); // duplicate volatile
17
18//Dummy main
19int main(int argc, char const *argv[])
20{
21 return 0;
22}
Note: See TracBrowser for help on using the repository browser.