2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2022-08-12 03:48:40 +00:00
|
|
|
// (this requires debug assertions)
|
|
|
|
|
2024-07-14 13:38:51 +01:00
|
|
|
#![feature(adt_const_params, unsized_const_params)]
|
2022-08-12 03:48:40 +00:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
pub const BAR: () = ice::<"">();
|
|
|
|
pub const fn ice<const N: &'static str>() {
|
|
|
|
&10;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|