(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
traits1.rs
trait Foo {
    fn bar() -> i32;
}

struct Test(i32, f32);

impl Foo for Test {
    fn bar() -> i32 {
        123
    }
}

fn main() {
    let a: i32;
    a = Test::bar();
}