about summary refs log tree commit diff
path: root/tests/ui/generic-associated-types/issue-58694-parameter-out-of-range.rs
blob: a1c3b35c2e7ca6945e0f98d4bc64761c7660bfe6 (plain)
1
2
3
4
5
6
7
//@ check-pass

trait Cert {
    type PublicKey<'a>: From<&'a [u8]>;
}

fn main() {}