]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/impl-const-generic-struct.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / const-generics / impl-const-generic-struct.rs
CommitLineData
48663c56 1// run-pass
48663c56
XL
2struct S<const X: u32>;
3
60c5eb7d 4impl<const X: u32> S<X> {
48663c56
XL
5 fn x() -> u32 {
6 X
7 }
8}
9
10fn main() {
11 assert_eq!(S::<19>::x(), 19);
12}