You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
242 B
10 lines
242 B
4 months ago
|
#define PATHSIZE 256
|
||
|
|
||
|
static const int len = 1234;
|
||
|
|
||
|
void foo() {
|
||
|
char arr[
|
||
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-macros -code-completion-at=%s:6:12 %s -o - | FileCheck %s
|
||
|
// CHECK: COMPLETION: len
|
||
|
// CHECK: COMPLETION: PATHSIZE
|