8 lines
128 B
Rust
8 lines
128 B
Rust
|
// error-pattern:can not return a reference to the wrong parameter
|
||
|
|
||
|
fn f(a: int, b: int) -> &1 int {
|
||
|
ret a;
|
||
|
}
|
||
|
|
||
|
fn main() {}
|