blob: 25b2b9ce22f16fae17e94cf610c4afddd01a4fea [file] [log] [blame]
Douglas Gregor81b747b2009-09-17 21:32:03 +00001// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s &&
2// RUN: true
3struct Point {
4 float x;
5 float y;
6 float z;
7};
8
9void test(struct Point *p) {
10 // CHECK-CC1: x
11 // CHECK-CC1: y
12 // CHECK-CC1: z
13 p->