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

11 lines
130 B
Plaintext

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