1 struct Point {
2 float x;
3 float y;
4 float z;
5 };
6
7 void test(struct Point *p) {
8 p->
9 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:8:6 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
10 // CHECK-CC1: x
11 // CHECK-CC1: y
12 // CHECK-CC1: z
13