rust/tests/ui/const-generics/const-arg-in-fn.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
150 B
Rust
Raw Normal View History

2019-04-22 18:03:14 -05:00
// run-pass
fn const_u32_identity<const X: u32>() -> u32 {
X
}
fn main() {
let val = const_u32_identity::<18>();
assert_eq!(val, 18);
}