mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 21:18:31 +00:00
16 lines
213 B
Rust
16 lines
213 B
Rust
// check-pass
|
|
#![feature(inline_const)]
|
|
|
|
fn foo<T>() -> usize {
|
|
const { std::mem::size_of::<T>() }
|
|
}
|
|
|
|
fn bar<const N: usize>() -> usize {
|
|
const { N + 1 }
|
|
}
|
|
|
|
fn main() {
|
|
foo::<i32>();
|
|
bar::<1>();
|
|
}
|