blob: 99a865f75a498eb2b3d369bb4bf21a704e4b1c23 [file] [log] [blame]
fn main() {
let n = 0;
struct Foo;
impl Foo {
const N: usize = n;
//~^ ERROR attempt to use a non-constant value
}
}