| 1 | #define PATHSIZE 256 |
|---|---|
| 2 | |
| 3 | static const int len = 1234; |
| 4 | |
| 5 | void foo() { |
| 6 | char arr[ |
| 7 | // RUN: %clang_cc1 -fsyntax-only -code-completion-macros -code-completion-at=%s:6:12 %s -o - | FileCheck %s |
| 8 | // CHECK: COMPLETION: len |
| 9 | // CHECK: COMPLETION: PATHSIZE |
| 10 |