17 lines
262 B
Rust
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>();
|
|
}
|