Skip to content

Commit adb58e7

Browse files
committedDec 19, 2016
Add a lit test for PR31374
Differential Revision: https://reviews.llvm.org/D27909 llvm-svn: 290075
1 parent a53217d commit adb58e7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
 
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// RUN: %clang_cc1 -Wno-objc-root-class -o /dev/null -triple x86_64-- -emit-llvm %s
2+
// REQUIRES: asserts
3+
// Verify there is no assertion.
4+
5+
@interface A
6+
@end
7+
8+
extern A *a;
9+
10+
@interface X
11+
@end
12+
13+
@implementation X
14+
15+
-(void)test {
16+
struct S {
17+
A *a;
18+
int b;
19+
};
20+
struct S s[] = {{a, 0}, {(void *)0, 0}};
21+
}
22+
@end

0 commit comments

Comments
 (0)
Please sign in to comment.