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>();
|
|
|
|
}
|