summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaCXX/direct-initializer.cpp
blob: c756e473dd48ef8ee3e13854baeff4d5e7a79951 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang -fsyntax-only -verify %s 

int x(1);
int (x2)(1);

void f() {
  int x(1);
  int (x2)(1); // expected-warning {{statement was disambiguated as declaration}}
  for (int x(1);;) {}
}
OpenPOWER on IntegriCloud