blob: df79b1eccaef3e14a7218b6547b6cd6c623cd405 [file] [log] [blame]
/* APPLE LOCAL file radar 4734562 */
/* { dg-options "-gdwarf-2 -dA" } */
/* { dg-final { scan-assembler "DW_AT_name: \"main\"" } } */
#include <objc/objc.h>
/* APPLE LOCAL radar 4894756 */
#include "../objc/execute/Object2.h"
extern "C" void abort (void);
@interface Bar : Object
{
int iVar;
int iBar;
float f;
}
@end
@implementation Bar
- (void) MySetter : (int) value { iVar = value; }
@end
int main(int argc, char *argv[]) {
Bar *f = [Bar new];
return 0;
}