aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/func4.rs
blob: 3b2d2b0d773a5080d67fb2bd5622e647964a704d (plain)
1
2
3
4
5
6
fn func() -> i32 { // { dg-error "expected .i32. got ...." }
}

fn main() {
    func();
}