blob: c9ac58f295d4d026329e08b44114f5fc213a2808 [file] [log] [blame]
Douglas Gregor81b747b2009-09-17 21:32:03 +00001struct Point {
2 float x;
3 float y;
4 float z;
5};
6
7void test(struct Point *p) {
Douglas Gregorb657f112009-09-22 21:11:38 +00008 p->
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00009 // RUN: clang-cc -fsyntax-only -code-completion-at=%s:8:6 %s -o - | FileCheck -check-prefix=CC1 %s
Douglas Gregor81b747b2009-09-17 21:32:03 +000010 // CHECK-CC1: x
11 // CHECK-CC1: y
12 // CHECK-CC1: z