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