summaryrefslogtreecommitdiff
path: root/test/CodeCompletion/comments.cpp
blob: 21f1465ebc048bec071c6536c858ebcf32522062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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