about summary refs log tree commit diff
path: root/tests/ui/issues/issue-44239.fixed
blob: 5466726fc9d4b15d8763a63b4944871028c716f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-rustfix
#![allow(dead_code, non_upper_case_globals)]
fn main() {
    const n: usize = 0;

    struct Foo;
    impl Foo {
        const N: usize = n;
        //~^ ERROR attempt to use a non-constant value
    }
}