mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:07:29 +00:00
10 lines
111 B
Rust
10 lines
111 B
Rust
//@ check-pass
|
|
|
|
pub fn todo<T>() -> T {
|
|
const { todo!() }
|
|
}
|
|
|
|
fn main() {
|
|
let _: usize = const { 0 };
|
|
}
|