blob: f41c509c8809da374902ec82829bfcf90468ea51 [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 Dunbara5728872009-12-15 20:14:24 +00009 // RUN: %clang_cc1 -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