Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / block-return.m
blobaab5c28fd65518ca88fa659c32c573d430d23958
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify -fblocks -fobjc-gc-only %s
2 // expected-no-diagnostics
4 @interface NSString
5 - (__attribute__((objc_gc(strong))) const char *)UTF8String;
6 @end
8 int main(void) {
9 __attribute__((objc_gc(strong))) char const *(^libraryNameForIndex)(void) = ^(void) {
10         NSString *moduleName;
11         return [moduleName UTF8String];
12     };