os-rust/tests/ui/error-codes/E0069.rs

8 lines
115 B
Rust
Raw Normal View History

2016-05-20 15:18:30 +02:00
fn foo() -> u8 {
2016-08-05 13:48:24 +10:00
return;
//~^ ERROR `return;` in a function whose return type is not `()`
2016-05-20 15:18:30 +02:00
}
fn main() {
}