mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
399 B
Rust
21 lines
399 B
Rust
// [full] check-pass
|
|
// revisions: full min
|
|
|
|
// regression test for #78180
|
|
|
|
#![cfg_attr(full, feature(generic_const_exprs))]
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
|
#![allow(dead_code)]
|
|
|
|
fn test<const N: usize>() {}
|
|
|
|
fn wow<'a>() -> &'a () {
|
|
test::<{
|
|
let _: &'a (); //[min]~ ERROR generic parameters may not be used in const operations
|
|
3
|
|
}>();
|
|
&()
|
|
}
|
|
|
|
fn main() {}
|