11 lines
181 B
C++
11 lines
181 B
C++
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
struct x {
|
|
x() : a(4) ; // expected-error {{expected '{'}}
|
|
};
|
|
|
|
struct y {
|
|
int a;
|
|
y() : a(4) ; // expected-error {{expected '{'}}
|
|
};
|