]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issue-103425.rs
Rollup merge of #106661 - mjguzik:linux_statx, r=Mark-Simulacrum
[rust.git] / tests / ui / parser / issue-103425.rs
1 fn f() -> f32 {
2     3
3     //~^ ERROR expected `;`
4     5.0
5 }
6
7 fn k() -> f32 {
8     2_u32
9     //~^ ERROR expected `;`
10     3_i8
11     //~^ ERROR expected `;`
12     5.0
13 }
14
15 fn main() {}