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