about summary refs log tree commit diff
path: root/tests/ui/const-generics/issues/issue-60818-struct-constructors.rs
blob: 8b3c8eea6164589c2470ec66c9a86e1aff13ec29 (plain)
1
2
3
4
5
6
7
//@ check-pass

struct Generic<const V: usize>;

fn main() {
    let _ = Generic::<0>;
}