10 lines
67 B
Rust
10 lines
67 B
Rust
// error-pattern: return
|
|
|
|
fn f() -> int {
|
|
}
|
|
|
|
fn main() {
|
|
f();
|
|
}
|
|
|