summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-ascription-instead-of-statement-end.rs
blob: 1d5565ab58384cf586bb899c16c1b51866d9e205 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(type_ascription)]

fn main() {
    println!("test"):
    0; //~ ERROR expected type, found `0`
}

fn foo() {
    println!("test"): 0; //~ ERROR expected type, found `0`
}