diff options
Diffstat (limited to 'clang/test/PCH/variables.c')
-rw-r--r-- | clang/test/PCH/variables.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/PCH/variables.c b/clang/test/PCH/variables.c index 4f42e504816..afd45461d0c 100644 --- a/clang/test/PCH/variables.c +++ b/clang/test/PCH/variables.c @@ -9,7 +9,8 @@ int *ip2 = &x; float *fp = &ip; // expected-warning{{incompatible pointer types}} // FIXME:variables.h expected-note{{previous}} double z; // expected-error{{redefinition}} - +// FIXME:variables.h expected-note{{previous}} +int z2 = 18; // expected-error{{redefinition}} //double VeryHappy; // FIXME: xpected-error{{redefinition}} |