mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
12 lines
244 B
C
12 lines
244 B
C
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=CC1 %s
|
|
// CHECK-CC1: x
|
|
// CHECK-CC1: y
|
|
// CHECK-CC1: z
|