blob: 2bde473581012510f166cb1879947831b1cc1dc5 [file] [edit]
// If it is impossible to find query arguments just from the hash
// compiler should treat the node as red
// In this test prior to fixing compiler was having problems figuring out
// drop impl for T inside of m
//@ revisions: bpass1 bpass2
//@ compile-flags: --crate-type=lib
//@ ignore-backends: gcc
#![allow(dead_code)]
pub trait P {
type A;
}
struct S;
impl P for S {
type A = C;
}
struct T<D: P>(D::A, Z<D>);
struct Z<D: P>(D::A, String);
impl<D: P> T<D> {
pub fn i() -> Self {
loop {}
}
}
enum C {
#[cfg(bpass1)]
Up(()),
#[cfg(bpass2)]
Lorry(()),
}
pub fn m() {
T::<S>::i();
}