Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / typo-correction-subscript.m
blob340f3cfe2743ced4b1bdcb63956a56c5d2a011d4
1 // RUN: %clang_cc1 -triple i386-apple-macosx10.10 -fobjc-arc -fsyntax-only -Wno-objc-root-class %s -verify
3 @class Dictionary;
5 @interface Test
6 @end
7 @implementation Test
8 - (void)rdar47403222:(Dictionary *)opts {
9   [self undeclaredMethod:undeclaredArg];
10   // expected-error@-1{{no visible @interface for 'Test' declares the selector 'undeclaredMethod:'}}
11   // expected-error@-2{{use of undeclared identifier 'undeclaredArg}}
12   opts[(__bridge id)undeclaredKey] = 0;
13   // expected-error@-1{{use of undeclared identifier 'undeclaredKey'}}
15 @end