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

fn main() {
}