summary refs log tree commit diff
path: root/src/test/ui/issues/issue-27433.rs
blob: 156ae68efe2c50235036c981b89870ca431a95a4 (plain)
1
2
3
4
5
fn main() {
    let foo = 42u32;
    const FOO : u32 = foo;
                   //~^ ERROR attempt to use a non-constant value in a constant
}