struct Foo(T, usize); impl Foo { fn test() -> i32 { 123 } fn test(self) -> i32 { // { dg-error "defined multiple times" } self.0 } } fn main() {}