diff options
Diffstat (limited to 'clang/test/CXX/stmt.stmt/stmt.select/p3.cpp')
-rw-r--r-- | clang/test/CXX/stmt.stmt/stmt.select/p3.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/CXX/stmt.stmt/stmt.select/p3.cpp b/clang/test/CXX/stmt.stmt/stmt.select/p3.cpp new file mode 100644 index 0000000..35e5c91 --- /dev/null +++ b/clang/test/CXX/stmt.stmt/stmt.select/p3.cpp @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s + +int f(); + +void g() { + if (int x = f()) { // expected-note 2{{previous definition}} + int x; // expected-error{{redefinition of 'x'}} + } else { + int x; // expected-error{{redefinition of 'x'}} + } +} + + +void h() { + if (int x = f()) // expected-note 2{{previous definition}} + int x; // expected-error{{redefinition of 'x'}} + else + int x; // expected-error{{redefinition of 'x'}} +} |