summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-58694-parameter-out-of-range.rs
blob: e87a76825c37de3793da7474208ae74abb2028d3 (plain)
1
2
3
4
5
6
7
8
9
// check-pass

#![feature(generic_associated_types)]

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

fn main() {}