diff options
Diffstat (limited to 'clang/test/Parser/namelookup-bug-1.c')
-rw-r--r-- | clang/test/Parser/namelookup-bug-1.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/Parser/namelookup-bug-1.c b/clang/test/Parser/namelookup-bug-1.c new file mode 100644 index 0000000..8667a71 --- /dev/null +++ b/clang/test/Parser/namelookup-bug-1.c @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -verify %s + +typedef int Object; + +struct Object *pp; + +Object staticObject1; |