2021-03-04 13:35:11 +00:00
|
|
|
// compile-flags: -Z mir-opt-level=3
|
2020-10-20 08:07:27 +00:00
|
|
|
|
2021-07-26 20:01:16 +00:00
|
|
|
#![feature(type_alias_impl_trait, rustc_attrs)]
|
2020-10-20 08:07:27 +00:00
|
|
|
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
|
|
|
|
trait MyIndex<T> {
|
|
|
|
type O;
|
|
|
|
fn my_index(self) -> Self::O;
|
|
|
|
}
|
|
|
|
trait MyFrom<T>: Sized {
|
|
|
|
type Error;
|
|
|
|
fn my_from(value: T) -> Result<Self, Self::Error>;
|
|
|
|
}
|
|
|
|
|
|
|
|
trait F {}
|
|
|
|
impl F for () {}
|
|
|
|
type DummyT<T> = impl F;
|
|
|
|
fn _dummy_t<T>() -> DummyT<T> {}
|
|
|
|
|
|
|
|
struct Phantom1<T>(PhantomData<T>);
|
|
|
|
struct Phantom2<T>(PhantomData<T>);
|
|
|
|
struct Scope<T>(Phantom2<DummyT<T>>);
|
|
|
|
|
|
|
|
impl<T> Scope<T> {
|
|
|
|
fn new() -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> MyFrom<Phantom2<T>> for Phantom1<T> {
|
|
|
|
type Error = ();
|
|
|
|
fn my_from(_: Phantom2<T>) -> Result<Self, Self::Error> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: MyFrom<Phantom2<DummyT<U>>>, U> MyIndex<Phantom1<T>> for Scope<U> {
|
|
|
|
type O = T;
|
|
|
|
fn my_index(self) -> Self::O {
|
|
|
|
MyFrom::my_from(self.0).ok().unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-12 10:54:12 +00:00
|
|
|
#[rustc_error]
|
2020-10-20 08:07:27 +00:00
|
|
|
fn main() {
|
2021-07-16 13:06:26 +00:00
|
|
|
//~^ ERROR
|
2021-03-12 12:51:53 +00:00
|
|
|
let _pos: Phantom1<DummyT<()>> = Scope::new().my_index();
|
2020-10-20 08:07:27 +00:00
|
|
|
}
|