Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
typeck
/
issue-83621-placeholder-static-in-extern.rs
blob: 16ec2a546434c20fbe79ebfb10d1445eb65841ea [
file
] [
log
] [
blame
]
// Regression test for #83621.
extern
"C"
{
static
x
:
_
;
//~ ERROR: [E0121]
}
fn
main
()
{}