11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
// ERROR:8:self
|
|
unit badarg;
|
|
|
|
struct Box {
|
|
value: i32,
|
|
|
|
fn bad(self: &Self, other: &i32) -> &i32 {
|
|
return other;
|
|
}
|
|
}
|