Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
generic-associated-types
/
issue-58694-parameter-out-of-range.rs
blob: a1c3b35c2e7ca6945e0f98d4bc64761c7660bfe6 [
file
] [
log
] [
blame
]
//@ check-pass
trait
Cert
{
type
PublicKey
<
'a>: From<&'
a
[
u8
]>;
}
fn
main
()
{}