blob: b9eebc8dac0f2f826ca3600f08bf323156d477e0 [file] [edit]
//! Regression test for <https://github.com/rust-lang/rust/issues/34751>.
//! This used to ICE with
//! `assertion failed: !substs.has_regions_escaping_depth(0)`.
//@ check-pass
#![allow(dead_code)]
use std::marker::PhantomData;
fn f<'a>(PhantomData::<&'a u8>: PhantomData<&'a u8>) {}
fn main() {}