blob: 5d6670e0f67ca4085c146198308abc49349dedb6 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -verify -fms-extensions
Steve Naroff0326e042008-06-03 13:21:30 +00002@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;
3typedef struct _NSRange { } NSRange;
4
5@class PBXFileReference;
6
7@interface PBXDocBookmark
8+ alloc;
9- autorelease;
10@end
Steve Naroffa2ac06e2008-06-03 17:15:29 +000011
12// GCC allows pointer expressions in integer constant expressions.
13struct {
14 char control[((int)(char *)2)];
15} xx;
16
Steve Naroff0326e042008-06-03 13:21:30 +000017@implementation PBXDocBookmark // expected-warning {{incomplete implementation}} expected-warning {{method definition for 'autorelease' not found}} expected-warning {{method definition for 'alloc' not found}}
18
19+ (id)bookmarkWithFileReference:(PBXFileReference *)fileRef gylphRange:(NSRange)range anchor:(NSString *)htmlAnchor
20{
21 NSRange r = (NSRange)range;
22 return [[[self alloc] initWithFileReference:fileRef gylphRange:(NSRange)range anchor:(NSString *)htmlAnchor] autorelease]; // expected-warning {{method '-initWithFileReference:gylphRange:anchor:' not found (return type defaults to 'id')}}
23}
24@end