mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
485 B
Rust
18 lines
485 B
Rust
// Test that `variant_count` only gets evaluated once the type is concrete enough.
|
|
|
|
#![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::<T>::VALUE, GetVariantCount::<T>::VALUE)
|
|
//~^ ERROR constant pattern depends on a generic parameter
|
|
}
|
|
|
|
fn main() {
|
|
assert!(check_variant_count::<Option<()>>());
|
|
}
|