about summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0118.rs
blob: aaef8113b8ae243bd7ea3a78be5aafe005faf4fa (plain)
1
2
3
4
5
6
7
impl fn(u8) { //~ ERROR E0118
    fn get_state(&self) -> String {
       String::new()
    }
}

fn main() {}