rust/tests/ui/block-result/unexpected-return-on-unit.rs
2023-01-11 09:32:08 +00:00

15 lines
212 B
Rust

// Test that we do some basic error correction in the tokeniser (and don't spew
// too many bogus errors).
fn foo() -> usize {
3
}
fn bar() {
foo() //~ ERROR mismatched types
}
fn main() {
bar()
}