aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/compound-init.m
blob: ebd0617f1e01519b93fd8da155c6129a019ceb64 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface A
@end

void f(void) {
  (A){ 0 }; // expected-error{{cannot initialize Objective-C class type 'A'}}
}