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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [obj-c++.dg/] [try-catch-4.mm] - Diff between revs 149 and 154

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

Rev 149 Rev 154
/* Check that the compiler does not incorrectly complain about
/* Check that the compiler does not incorrectly complain about
   exceptions being caught by previous @catch blocks.  */
   exceptions being caught by previous @catch blocks.  */
/* Author: Ziemowit Laski  */
/* Author: Ziemowit Laski  */
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-Wall -fobjc-exceptions" } */
/* { dg-options "-Wall -fobjc-exceptions" } */
@interface Exception
@interface Exception
@end
@end
@interface FooException : Exception
@interface FooException : Exception
@end
@end
extern void foo();
extern void foo();
void test()
void test()
{
{
  @try {
  @try {
    foo();
    foo();
  }
  }
  @catch (FooException* fe) {
  @catch (FooException* fe) {
  }
  }
  @catch (Exception* e) {
  @catch (Exception* e) {
  }
  }
}
}
 
 

powered by: WebSVN 2.1.0

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