bolt/deps/llvm-18.1.8/clang/test/SemaObjC/compound-init.m
2025-02-14 19:21:04 +01:00

7 lines
158 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface A
@end
void f(void) {
(A){ 0 }; // expected-error{{cannot initialize Objective-C class type 'A'}}
}