xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-class-extension.m (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
2
3// CHECK: AT_APPLE_objc_complete_type
4
5@interface I1
6@end
7
8@implementation I1 {
9int myi2;
10}
11int myi;
12@end
13
14void foo(I1 *iptr) {}
15
16