view gcc/testsuite/objc.dg/comp-types-10.m @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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