aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/method-def-1.m
blob: 7948eed580e7cffbb3dcbc6379e7d86dd023b8aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: clang -fsyntax-only -verify %s

@interface foo
- (int)meth;
@end

@implementation foo
- (int) meth { return [self meth]; }
@end

// PR2708
@interface MyClass
+- (void)myMethod;   // expected-error {{expected selector for Objective-C method}}
- (vid)myMethod2;    // expected-error {{expected a type}}
@end

@implementation MyClass
- (void)myMethod { }
- (vid)myMethod2 { }	// expected-error {{expected a type}}
@end