mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 19:17:43 +00:00
12 lines
137 B
Rust
12 lines
137 B
Rust
![]() |
// check-pass
|
||
|
|
||
|
#![feature(inline_const)]
|
||
|
|
||
|
pub fn todo<T>() -> T {
|
||
|
const { todo!() }
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let _: usize = const { 0 };
|
||
|
}
|