mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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>();
|
|
}
|