blob: d49fb04236186540780f4bca934c053128813046 [file] [log] [blame]
Douglas Gregor374929f2009-09-18 15:37:17 +00001enum X { x };
2enum Y { y };
3struct Z { };
4
5void X();
6
7void test() {
8 enum X { x };
Douglas Gregorb657f112009-09-22 21:11:38 +00009 enum
Tim Northover931a4fe2013-08-12 12:51:05 +000010 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:9:7 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
Douglas Gregorab0b4f12010-01-13 23:24:38 +000011 // CHECK-CC1: X
12 // CHECK-CC1: Y