rust/src/test/ui/error-codes/E0118.rs
2018-12-25 21:08:33 -07:00

8 lines
113 B
Rust

impl (u8, u8) { //~ ERROR E0118
fn get_state(&self) -> String {
String::new()
}
}
fn main() {
}