blob: 549a2adea126596ebacef05744f564ea695a40c7 [file] [log] [blame]
Devang Patelf568b642011-05-12 21:14:54 +00001// RUN: %clang_cc1 -fobjc-nonfragile-abi -masm-verbose -S -g %s -o - | FileCheck %s
2
3// CHECK-NOT: AT_APPLE_objc_class_extension
4
5@interface Foo {} @end
6
7@interface Foo () {
8 int *bar;
9}
10@end
11
12void bar(Foo *fptr) {}