summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/issues/issue-71986.rs
blob: 6f0a98ead88704e436fd2480e593a36f97f376c2 (plain)
1
2
3
4
5
6
// check-pass

pub trait Foo<const B: bool> {}
pub fn bar<T: Foo<{ true }>>() {}

fn main() {}