7 lines
96 B
Rust
7 lines
96 B
Rust
|
//@ check-pass
|
||
|
|
||
|
pub trait Foo<const B: bool> {}
|
||
|
pub fn bar<T: Foo<{ true }>>() {}
|
||
|
|
||
|
fn main() {}
|