[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / objc-string-constant.m
blobcc6d60c82ae6c2eb1268ff10348382fb35a9f633
1 // RUN: %clang_cc1 -Wsemicolon-before-method-body %s -verify -fsyntax-only
3 #define nil 0       /* id of Nil instance */
5 @interface NSObject 
6 @end
8 @interface NSString : NSObject
10 @end
12 @interface NSMutableString : NSString
14 @end
16 @interface NSSimpleCString : NSString {
17 @protected
18     char *bytes;
19     int numBytes;
21 @end
23 @interface NSConstantString : NSSimpleCString
24 @end
27 @interface Subclass : NSObject 
28 - (NSString *)token;
29 @end
31 @implementation Subclass
32 - (NSString *)token;    // expected-warning {{semicolon before method body is ignored}}
34   NSMutableString *result = nil;
36   return (result != nil) ? result : @"";
38 @end