rust/src/test/ui/const-generics/issues/issue-61432.rs
Bastian Kauschke c4ba60a191 update tests
2020-12-26 18:24:10 +01:00

17 lines
262 B
Rust

// run-pass
// revisions: full min
#![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
fn promote<const N: i32>() {
// works:
//
// let n = N;
// &n;
&N;
}
fn main() {
promote::<0>();
}