(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
redef_error5.rs
struct Foo(i32, bool);

impl Foo {
    const TEST: i32 = 123;
    const TEST: bool = false; // { dg-error "redefined multiple times"  }
}

fn main() {}