annotate clang/test/Index/complete-tabs.c @ 173:0572611fdcc8 llvm10 llvm12

reorgnization done
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 11:55:54 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // Test code-completion in the presence of tabs
anatofuz
parents:
diff changeset
2 struct Point { int x, y; };
anatofuz
parents:
diff changeset
3
anatofuz
parents:
diff changeset
4 void f(struct Point *p) {
anatofuz
parents:
diff changeset
5 p->
anatofuz
parents:
diff changeset
6
anatofuz
parents:
diff changeset
7 // RUN: c-index-test -code-completion-at=%s:5:5 %s | FileCheck -check-prefix=CHECK-CC1 %s
anatofuz
parents:
diff changeset
8 // CHECK-CC1: {TypedText x}
anatofuz
parents:
diff changeset
9 // CHECK-CC1: {TypedText y}