Files
doslang-mirror/fec/tests/m6/badarg.fe
T

11 lines
137 B
Plaintext

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