xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-class-extension3.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
2
3// CHECK-NOT: AT_APPLE_objc_complete_type
4
5@interface Foo {} @end
6
7@interface Foo () {
8    int *bar;
9}
10@end
11
12void bar(Foo *fptr) {}
13