about summary refs log tree commit diff
path: root/tests/ui/const-generics/issues/issue-71986.rs
blob: c97b3c59e0e8ebbb1fca183dbad9638509d8dec6 (plain)
1
2
3
4
5
6
//@ check-pass

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

fn main() {}