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