rust/src/test/ui/const-generics/issues/issue-61432.rs

18 lines
220 B
Rust
Raw Normal View History

2019-08-19 11:33:49 -05:00
// run-pass
#![feature(const_generics)]
2020-04-22 03:21:32 -05:00
//~^ WARN the feature `const_generics` is incomplete
2019-08-19 11:33:49 -05:00
fn promote<const N: i32>() {
// works:
//
// let n = N;
// &n;
&N;
}
fn main() {
promote::<0>();
}