Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
suggest-semicolon-before-array.rs
blob: 382769b84c80034aa0b699f1f099162d3c20ca4a [
file
] [
log
] [
blame
]
//@ run-rustfix
#![
allow
(
dead_code
)]
fn
foo
()
{}
fn
bar
()
->
[
u8
;
2
]
{
foo
()
[
1
,
3
]
//~ ERROR expected `;`, found `[`
}
fn
main
()
{}