Sign in
llvm
/
llvm-project
/
clang
/
2b1628c89c225f2131a06976576964d345e91f02
/
.
/
test
/
Parser
/
namelookup-anonymous-struct.c
blob: cb691c22f97ffd63ef0409670b76b85cc042629e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -std=c11 -verify %s
struct
GH31295
{
struct
{
int
x
;
};
int
arr
[
sizeof
(
x
)];
// expected-error{{use of undeclared identifier 'x'}}
};