blob: 2298aa5b0b751d3c9ae1732044fba53c141e23ef [file] [log] [blame]
// check-pass
#![allow(incomplete_features)]
#![feature(generic_associated_types)]
trait Cert {
type PublicKey<'a>: From<&'a [u8]>;
}
fn main() {}