mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
22 lines
400 B
Rust
22 lines
400 B
Rust
// [full] check-pass
|
|
// revisions: full min
|
|
|
|
// regression test for #78180
|
|
// compile-flags: -Zsave-analysis
|
|
|
|
#![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 a non-static lifetime
|
|
3
|
|
}>();
|
|
&()
|
|
}
|
|
|
|
fn main() {}
|