Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
viro
/
sparse
/
v0.4.2-rc1
/
.
/
validation
/
struct-ns2.c
blob: b38af0ab562f2f10835a9f9a1afd6f62e03c0a4d [
file
] [
log
] [
blame
]
static
void
g
(
struct
Bar
{
int
i
;
}
*
x
)
{
struct
Bar
y
;
y
.
i
=
1
;
}
static
void
h
(
void
)
{
// This is not in scope and should barf loudly.
struct
Bar
y
;
y
.
i
=
1
;
}