Fix to regression caused by r167650, caught by Richard Smith in code review.
llvm-svn: 167653
if (S->getFlags() & Scope::FnTryScope)
return S->getParent()->isDeclScope(D);
if (S->getParent()->getFlags() & Scope::ControlScope) {
- if (S->getParent()->getFlags() & Scope::FnCatchScope)
+ if (S->getParent()->getFlags() & Scope::FnCatchScope) {
S = S->getParent();
+ if (S->isDeclScope(D))
+ return true;
+ }
return S->getParent()->isDeclScope(D);
}
}
} catch (...) {
int j = i; // expected-error{{use of undeclared identifier 'i'}}
}
+
+void func6() try {
+} catch (int i) { // expected-note{{previous definition is here}}
+ int i; // expected-error{{redefinition of 'i'}}
+}
+
+void func7() {
+ try {
+ } catch (int i) { // expected-note{{previous definition is here}}
+ int i; // expected-error{{redefinition of 'i'}}
+ }
+}