Files
2026-06-20 14:49:53 +09:00

10 lines
198 B
C

struct Point { int x; };
// ^ @type
// ^ @variable.other.member
int add(int a) {
// ^ @function
// ^ @variable.parameter
return helper(a);
// ^ @function
}