rust/tests/ui/error-codes/E0118.rs

8 lines
107 B
Rust

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