blob: 77e52c6893f3da10a13c5c4267cfda51d9c2c6aa [file] [log] [blame]
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, November 2010. */
/* { dg-do compile } */
// { dg-additional-options "-Wno-objc-root-class" }
/* Test that a duplicated @implementation for the same class does not
crash the compiler. */
@interface Test
{
Class isa;
}
- (int) test;
@end
@implementation Test
- (int) test
{
return 4;
}
@end
/* The most likely cause is that the programmer meant this to be a
category, so check what happens if we have some different methods
in there. */
@implementation Test /* { dg-error "reimplementation of class .Test." } */
- (int) test2
{
return [self test];
}
@end
/* { dg-warning "incomplete implementation" "" { target *-*-* } .-1 } */
/* { dg-warning "not found" "" { target *-*-* } .-2 } */