blob: 0f172f8e3a86c7db163a260338eef562e44e7f65 [file] [log] [blame]
/* APPLE LOCAL file mainline */
/* Test that compiling for the GNU runtime works (regardless of
the system runtime used). */
/* Author: Ziemowit Laski <zlaski@apple.com> */
/* { dg-do run } */
/* { dg-options "-fgnu-runtime" } */
/* APPLE LOCAL radar 4895746 */
/* { dg-skip-if "" { *-*-darwin* } } */
#include <objc/Object.h>
@interface FooBar: Object
- (void)boo;
@end
int called = 0;
extern "C" void abort ();
@implementation FooBar
- (void)boo
{
called ++;
}
@end
int main ()
{
id fooBarInst = [[FooBar alloc] init];
[fooBarInst boo];
if (called != 1)
abort ();
return 0;
}