rust/tests/ui/consts/issue-88071.rs
2023-01-11 09:32:08 +00:00

19 lines
263 B
Rust

// check-pass
//
// regression test for #88071
use std::collections::BTreeMap;
pub struct CustomMap<K, V>(BTreeMap<K, V>);
impl<K, V> CustomMap<K, V>
where
K: Ord,
{
pub const fn new() -> Self {
CustomMap(BTreeMap::new())
}
}
fn main() {}