]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/concrete-const-as-fn-arg.rs
Auto merge of #79578 - alexcrichton:update-waasi, r=KodrAus
[rust.git] / src / test / ui / const-generics / concrete-const-as-fn-arg.rs
1 // Test that a concrete const type i.e. A<2>, can be used as an argument type in a function
2 // run-pass
3 // revisions: full min
4
5 #![cfg_attr(full, feature(const_generics))]
6 #![cfg_attr(full, allow(incomplete_features))]
7
8 struct A<const N: usize>; // ok
9
10 fn with_concrete_const_arg(_: A<2>) -> u32 { 17 }
11
12 fn main() {
13     let val: A<2> = A;
14     assert_eq!(with_concrete_const_arg(val), 17);
15 }