summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-79137-monomorphic.rs
blob: 58e0c387ffb9c19cd245747a1e31062f715cb835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// check-pass

// Verify that variant count intrinsic can still evaluate for types like `Option<T>`.

#![feature(variant_count)]

pub struct GetVariantCount<T>(T);

impl<T> GetVariantCount<T> {
    pub const VALUE: usize = std::mem::variant_count::<T>();
}

const fn check_variant_count<T>() -> bool {
    matches!(GetVariantCount::<Option<T>>::VALUE, GetVariantCount::<Option<()>>::VALUE)
}

fn main() {
    assert!(check_variant_count::<()>());
}