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

int x(1);

void f() {
  int x(1);
  for (int x(1);;) {}
}