blob: 16be49f29969050028ba96ecf4f6df8635bc235a [file]
//! Regression test for https://github.com/rust-lang/rust/issues/34780
//@ check-pass
use std::marker::PhantomData;
trait Tr<'a> {
const C: PhantomData<&'a u8> = PhantomData::<&'a u8>;
}
fn main() {}