summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/class-conforming-protocol-2.m
blob: 550bafd60f71a97696695486bb4e01fe46628f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// RUN: clang -cc1  -fsyntax-only -verify %s

@protocol NSWindowDelegate @end

@interface NSWindow
- (void)setDelegate:(id <NSWindowDelegate>)anObject;
- (id <NSWindowDelegate>) delegate;
@end

@protocol IBStringsTableWindowDelegate <NSWindowDelegate>
@end

@interface IBStringsTableWindow : NSWindow {}
@end

@implementation IBStringsTableWindow
- (void)setDelegate:(id <IBStringsTableWindowDelegate>)delegate {
}
- (id <IBStringsTableWindowDelegate>)delegate {
        return 0;
}
@end