blob: bb0aab6500a166884322f58e8316ec3d4257a78d [file] [log] [blame]
Argiris Kirtzidis9e55d462008-10-06 17:10:33 +00001// RUN: clang -fsyntax-only %s
2
3int x(1);
4
5void f() {
6 int x(1);
7 for (int x(1);;) {}
8}