summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx-member-initializers.cpp
blob: 5c3906836c4937e04141c972c9098f777c6c350e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 '('}}
};