xref: /llvm-project/clang/test/CodeCompletion/bracket-decl.c (revision cf9b25e0adc42546e4dc5ff51ee8674d45bac26b)
1 #define PATHSIZE 256
2 
3 static const int len = 1234;
4 
foo()5 void foo() {
6   char arr[
7 // RUN: %clang_cc1 -fsyntax-only -code-completion-macros -code-completion-at=%s:%(line-1):12 %s -o - | FileCheck %s
8 // CHECK: COMPLETION: len
9 // CHECK: COMPLETION: PATHSIZE
10