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