summaryrefslogtreecommitdiffstats
path: root/tests/rust/assoc_const_conflict.rs
blob: 7907e32b0224efd470e7bf4aea6e4dc0c7cda88c (plain)
1
2
3
4
5
6
7
8
9
#[repr(C)]
struct Foo {}

pub const Foo_FOO: u32 = 42;

impl Foo {
    const FOO: i32 = 0;
}