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