blob: 7b9ec6b1bf899e8d60fb06cf51ee8de64ed94f97 [file] [log] [blame]
/* APPLE LOCAL file radar 4705298 */
/* Test effect of "hidden" visibility setting of a class on exported symbols
int objc2 abi. */
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-options "-mmacosx-version-min=10.5 -fobjc-abi-version=2" } */
__attribute__((visibility("hidden")))
@interface Foo {
@public
id publicIvar;
@protected
id protectedIvar;
@private
id privateIvar;
}
@end
@implementation Foo @end
/* { dg-final { scan-assembler ".private_extern _OBJC_METACLASS_\\\$_Foo" } } */
/* { dg-final { scan-assembler ".private_extern _OBJC_CLASS_\\\$_Foo" } } */
/* { dg-final { scan-assembler ".private_extern _OBJC_IVAR_\\\$_Foo.publicIvar" } } */
/* { dg-final { scan-assembler ".private_extern _OBJC_IVAR_\\\$_Foo.protectedIvar" } } */
/* { dg-final { scan-assembler ".private_extern _OBJC_IVAR_\\\$_Foo.privateIvar" } } */