mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 09:52:44 -04:00
12 lines
236 B
C
12 lines
236 B
C
enum X { x };
|
|
enum Y { y };
|
|
struct Z { };
|
|
|
|
void X();
|
|
|
|
void test() {
|
|
enum X { x };
|
|
enum
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:9:7 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
|
|
// CHECK-CC1: X
|
|
// CHECK-CC1: Y
|