blob: 1b5476d4c364ffcefc7612718741509047cdb59b [file] [log] [blame]
#![feature(rustc_attrs)]
// revisions: good bad
trait Mirror {
type Image;
}
impl<T> Mirror for T {
type Image = T;
}
#[cfg(bad)]
fn foo<U, T>(_t: T)
where for<'a> &'a T: Mirror<Image=U>
{}
#[cfg(good)]
fn foo<U, T>(_t: T)
where for<'a> &'a T: Mirror<Image=&'a U>
{}
#[rustc_error]
fn main() { //[good]~ ERROR fatal error triggered by #[rustc_error]
foo(());
//[bad]~^ ERROR mismatched types
}