OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [obj-c++.dg/] [proto-lossage-1.mm] - Diff between revs 308 and 338

Only display areas with differences | Details | Blame | View Log

Rev 308 Rev 338
/* Test for situations in which protocol conformance information
/* Test for situations in which protocol conformance information
   may be lost, leading to superfluous warnings.  */
   may be lost, leading to superfluous warnings.  */
/* Author: Ziemowit Laski .  */
/* Author: Ziemowit Laski .  */
/* { dg-do compile } */
/* { dg-do compile } */
/* One-line substitute for objc/objc.h */
/* One-line substitute for objc/objc.h */
typedef struct objc_object { struct objc_class *class_pointer; } *id;
typedef struct objc_object { struct objc_class *class_pointer; } *id;
@protocol NSObject
@protocol NSObject
- (int)someValue;
- (int)someValue;
@end
@end
@interface NSObject 
@interface NSObject 
@end
@end
@protocol PlateMethods
@protocol PlateMethods
- (void)someMethod;
- (void)someMethod;
@end
@end
@interface Foo {
@interface Foo {
  NSObject  *plate;
  NSObject  *plate;
  id  plate1;
  id  plate1;
  NSObject *plate2;
  NSObject *plate2;
}
}
- (id ) getPlate;
- (id ) getPlate;
- (id ) getPlate1;
- (id ) getPlate1;
- (int) getValue;
- (int) getValue;
@end
@end
@implementation Foo
@implementation Foo
- (id ) getPlate {
- (id ) getPlate {
  return plate;  /* { dg-bogus "does not implement" } */
  return plate;  /* { dg-bogus "does not implement" } */
}
}
- (id ) getPlate1 {
- (id ) getPlate1 {
  return (id )plate1; /* { dg-bogus "does not conform" } */
  return (id )plate1; /* { dg-bogus "does not conform" } */
}
}
- (int) getValue {
- (int) getValue {
  int i = [plate1 someValue];   /* { dg-warning ".\\-someValue. not found in protocol\\(s\\)" } */
  int i = [plate1 someValue];   /* { dg-warning ".\\-someValue. not found in protocol\\(s\\)" } */
  int j = [(id )plate1 someValue];  /* { dg-bogus "not found in protocol" } */
  int j = [(id )plate1 someValue];  /* { dg-bogus "not found in protocol" } */
  int k = [(id)plate1 someValue]; /* { dg-bogus "not found in protocol" } */
  int k = [(id)plate1 someValue]; /* { dg-bogus "not found in protocol" } */
  return i + j + k;
  return i + j + k;
}
}
@end
@end
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.