Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
issues
/
issue-71986.rs
blob: c97b3c59e0e8ebbb1fca183dbad9638509d8dec6 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
pub
trait
Foo
<
const
B
:
bool
>
{}
pub
fn
bar
<
T
:
Foo
<{
true
}>>()
{}
fn
main
()
{}