rust/tests/ui/const-generics/issues/issue-71986.rs

7 lines
95 B
Rust
Raw Normal View History

2020-01-03 18:42:02 -06:00
// check-pass
pub trait Foo<const B: bool> {}
pub fn bar<T: Foo<{ true }>>() {}
fn main() {}