blob: f41c509c8809da374902ec82829bfcf90468ea51 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001struct Point {
2 float x;
3 float y;
4 float z;
5};
6
7void test(struct Point *p) {
8 p->
9 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:8:6 %s -o - | FileCheck -check-prefix=CC1 %s
10 // CHECK-CC1: x
11 // CHECK-CC1: y
12 // CHECK-CC1: z