unit test for issue 57673.

This commit is contained in:
Felix S. Klock II 2019-01-22 14:49:18 +01:00
parent 2dea8ec630
commit 33c2ceb3a2
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,7 @@
//extern crate has_assoc_type;
//fn ice(x: Box<dyn has_assoc_type::Foo<Assoc=()>>) {
fn ice(x: Box<dyn Iterator<Item=()>>) {
*x //~ ERROR mismatched types [E0308]
}
fn main() {}

View File

@ -0,0 +1,14 @@
error[E0308]: mismatched types
--> $DIR/issue-57673-ice-on-deref-of-boxed-trait.rs:5:5
|
LL | fn ice(x: Box<dyn Iterator<Item=()>>) {
| - possibly return type missing here?
LL | *x //~ ERROR mismatched types [E0308]
| ^^ expected (), found trait std::iter::Iterator
|
= note: expected type `()`
found type `(dyn std::iter::Iterator<Item=()> + 'static)`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.