1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
20 lines
437 B
C++
20 lines
437 B
C++
// 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'}}
|
|
}
|