Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeCompletion
/
member-access.c
blob: 226e182ab15f1c99ad12099354a9ad892468d52b [
file
] [
log
] [
blame
]
struct
Point
{
float
x
;
float
y
;
float
z
;
};
void
test
(
struct
Point
*
p
)
{
p
->
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:8:6 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
// CHECK-CC1: x
// CHECK-CC1: y
// CHECK-CC1: z