mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
13 lines
215 B
Rust
13 lines
215 B
Rust
![]() |
// check-pass
|
||
|
// (this requires debug assertions)
|
||
|
|
||
|
#![feature(adt_const_params)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
pub const BAR: () = ice::<"">();
|
||
|
pub const fn ice<const N: &'static str>() {
|
||
|
&10;
|
||
|
}
|
||
|
|
||
|
fn main() {}
|