Add test for issue-70877

This commit is contained in:
Yuki Okushi 2020-10-15 08:35:18 +09:00
parent 043eca7f0b
commit 7db8904518
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,38 @@
#![feature(type_alias_impl_trait)]
#![feature(impl_trait_in_bindings)]
#![allow(incomplete_features)]
type FooArg<'a> = &'a dyn ToString;
type FooRet = impl std::fmt::Debug;
type FooItem = Box<dyn Fn(FooArg) -> FooRet>;
type Foo = impl Iterator<Item = FooItem>; //~ ERROR: type mismatch
#[repr(C)]
struct Bar(u8);
impl Iterator for Bar {
type Item = FooItem;
fn next(&mut self) -> Option<Self::Item> {
Some(Box::new(quux))
}
}
fn quux(st: FooArg) -> FooRet {
Some(st.to_string())
}
fn ham() -> Foo {
Bar(1)
}
fn oof() -> impl std::fmt::Debug {
let mut bar = ham();
let func = bar.next().unwrap();
return func(&"oof");
}
fn main() {
let _ = oof();
}

View File

@ -0,0 +1,15 @@
error[E0271]: type mismatch resolving `<Bar as Iterator>::Item == Box<(dyn for<'r> Fn(&'r (dyn ToString + 'r)) -> Option<String> + 'static)>`
--> $DIR/issue-70877.rs:9:12
|
LL | type FooRet = impl std::fmt::Debug;
| -------------------- the expected opaque type
...
LL | type Foo = impl Iterator<Item = FooItem>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected opaque type, found enum `Option`
|
= note: expected struct `Box<(dyn for<'r> Fn(&'r (dyn ToString + 'r)) -> impl Debug + 'static)>`
found struct `Box<(dyn for<'r> Fn(&'r (dyn ToString + 'r)) -> Option<String> + 'static)>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0271`.