1// RUN: %clang_cc1 -fobjc-nonfragile-abi -masm-verbose -S -g %s -o - | FileCheck %s
2// CHECK: AT_APPLE_objc_complete_type
3
4@interface Foo {} @end
5
6@interface Foo () {
7 int *bar;
8}
9@end
10
11@implementation Foo
12@end
13
14void bar(Foo *fptr) {}
15