summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/issue-58694-parameter-out-of-range.rs
blob: 625ccfe89e09f9565bc54c3ef3b2755adb1f3b41 (plain)
1
2
3
4
5
6
7
// check-pass

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

fn main() {}