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.
14 lines
432 B
14 lines
432 B
// Note: the run lines follow their respective tests, since line/column
|
|
// matter in this test.
|
|
|
|
#include "comments.h"
|
|
|
|
struct A {
|
|
// <- code completion
|
|
/* <- code completion */
|
|
};
|
|
|
|
// RUN: %clang_cc1 -I %S/Inputs -fsyntax-only -code-completion-at=%s:7:6 %s
|
|
// RUN: %clang_cc1 -I %S/Inputs -fsyntax-only -code-completion-at=%s:8:6 %s
|
|
// RUN: %clang_cc1 -I %S/Inputs -fsyntax-only -code-completion-at=%S/Inputs/comments.h:3:6 %s
|