diff options
Diffstat (limited to 'test/SemaObjC/scope-check.m')
-rw-r--r-- | test/SemaObjC/scope-check.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/scope-check.m b/test/SemaObjC/scope-check.m index 0833a1696d..fb9bd4570d 100644 --- a/test/SemaObjC/scope-check.m +++ b/test/SemaObjC/scope-check.m @@ -39,8 +39,8 @@ L3: ; goto L8; // expected-error{{illegal goto into protected scope}} @try { - } @catch (A *c) { // expected-note {{jump bypasses initialization of @catch block}} - } @catch (B *c) { // expected-note {{jump bypasses initialization of @catch block}} + } @catch (A *c) { + } @catch (B *c) { } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}} L8: ; } |