Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
viro
/
sparse
/
ef2e777c1bda3fbb2b00c9332e1bf40d24afc136
/
.
/
validation
/
struct-ns2.c
blob: 4dd2c3bf0f79a9801a4e0a9ef1737d1e5e447800 [
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
;
}
/*
* check-name: struct not in scope
* check-known-to-fail
*/