]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/concrete-const-as-fn-arg.rs
Auto merge of #79342 - CDirkx:ipaddr-const, r=oli-obk
[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 #![cfg_attr(min, feature(min_const_generics))]
8
9 struct A<const N: usize>; // ok
10
11 fn with_concrete_const_arg(_: A<2>) -> u32 { 17 }
12
13 fn main() {
14     let val: A<2> = A;
15     assert_eq!(with_concrete_const_arg(val), 17);
16 }