mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
183 B
C++
10 lines
183 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 '{'}}
|
|
};
|