mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-09 23:10:36 +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 };
|
|
}
|