mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 11:26:07 +00:00
13 lines
252 B
C
13 lines
252 B
C
![]() |
// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s &&
|
||
|
// RUN: true
|
||
|
struct Point {
|
||
|
float x;
|
||
|
float y;
|
||
|
float z;
|
||
|
};
|
||
|
|
||
|
void test(struct Point *p) {
|
||
|
// CHECK-CC1: x
|
||
|
// CHECK-CC1: y
|
||
|
// CHECK-CC1: z
|
||
|
p->
|