You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
270 B
7 lines
270 B
4 months ago
|
// RUN: %clang_cc1 -triple thumbv7-apple-ios10.0.0 -emit-llvm -fvisibility hidden -w %s -o - | FileCheck %s
|
||
|
|
||
|
// CHECK: @"OBJC_CLASS_$_a" = hidden global %struct._class_t
|
||
|
|
||
|
__attribute__((availability(ios, introduced = 11.0))) @interface a @end
|
||
|
@implementation a @end
|