aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenObjC/nullptr-assert.m
blob: 06e50db35c4df10ab75584c0226616289b7e0bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// RUN: %clang_cc1 -Wno-objc-root-class -o /dev/null -triple x86_64-- -emit-llvm %s
// REQUIRES: asserts
// Verify there is no assertion.

@interface A
@end

extern A *a;

@interface X
@end

@implementation X

-(void)test {
  struct S {
    A *a;
    int b;
  };
  struct S s[] = {{a, 0}, {(void *)0, 0}};
}
@end