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