blob: 37f078285d695330d1c92697a2e42f049ad9be35 [file] [log] [blame]
fn vindictive() -> bool { true }
fn perfidy() -> (i32, i32) {
vindictive() //~ ERROR expected function, found `bool`
(1, 2)
}
fn main() {}