aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/comp-types-11.mm
blob: b95af5de1bc6cf1630f24ea506ff3217f2f8ca07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { dg-do compile } */

#include "../objc-obj-c++-shared/TestsuiteObject.h"

@protocol Foo
- (id)meth1;
- (id)meth2:(int)arg;
@end

@interface Derived1: TestsuiteObject
@end

@interface Derived2: TestsuiteObject
+ (Derived1 *)new;
@end

id<Foo> func(void) {
  TestsuiteObject *o = [TestsuiteObject new];
  return o;  /* { dg-warning "class .TestsuiteObject. does not implement the .Foo. protocol" } */
}

@implementation Derived2
+ (Derived1 *)new {
  Derived2 *o = [super new];
  return o;  /* { dg-warning "distinct Objective\\-C type in return" } */
}
@end