Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / arc-invalid.m
blob8a1ebc78e7403bfe74601f0cfdecd52a4b523492
1 // RUN: %clang_cc1 -fsyntax-only -fobjc-arc -fblocks -Wno-objc-root-class -verify %s
3 // [p foo] in ARC creates a cleanup.
4 // The plus is invalid and causes the cleanup to go unbound.
5 // Don't crash.
6 @interface A
7 - (id) foo;
8 @end
9 void takeBlock(void (^)(void));
10 void test0(id p) {
11   takeBlock(^{ [p foo] + p; }); // expected-error {{invalid operands to binary expression}}
14 void test1(void) {
15   __autoreleasing id p; // expected-note {{'p' declared here}}
16   takeBlock(^{ (void) p; }); // expected-error {{cannot capture __autoreleasing variable in a block}}
19 @class WebFrame;
20 @interface WebView  // expected-note {{previous definition is here}}
21 - (WebFrame *)mainFrame;
22 @end
24 @interface WebView  // expected-error {{duplicate interface definition for class 'WebView'}}
25 @property (nonatomic, readonly, strong) WebFrame *mainFrame;
26 @end
28 @interface UIWebDocumentView
29 - (WebView *)webView;
30 @end
32 @interface UIWebBrowserView : UIWebDocumentView
33 @end
35 @interface StoreBanner @end
37 @implementation StoreBanner
38 + (void)readMetaTagContentForUIWebBrowserView:(UIWebBrowserView *)browserView
40   [[browserView webView] mainFrame];
42 @end