the test suite after modifying this diagnostic.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103537
91177308-0d34-0410-b5e6-
96231b3b80d8
int test3() {
goto L; // expected-error{{illegal goto into protected scope}}
-int a __attribute((cleanup(test3clean))); // expected-note {{jump bypasses initialization of declaration with __attribute__((cleanup))}}
+int a __attribute((cleanup(test3clean))); // expected-note {{jump bypasses initialization of variable with __attribute__((cleanup))}}
L:
return a;
}