mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
15 lines
255 B
C++
15 lines
255 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
struct x {
|
|
x() : a(4) ; // expected-error {{expected '{'}}
|
|
};
|
|
|
|
struct y {
|
|
int a;
|
|
y() : a(4) ; // expected-error {{expected '{'}}
|
|
};
|
|
|
|
struct z {
|
|
int a;
|
|
z() : a {} // expected-error {{expected '('}}
|
|
};
|