summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-103425.rs
blob: c2f8123ca4e6770aec5010a73de8c5b77863a304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn f() -> f32 {
    3
    //~^ ERROR expected `;`
    5.0
}

fn k() -> f32 {
    2_u32
    //~^ ERROR expected `;`
    3_i8
    //~^ ERROR expected `;`
    5.0
}

fn main() {}