view clang/test/CodeGenObjC/nullptr-assert.m @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents 1d019706d866
children
line wrap: on
line source

// 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