Fix error index test

This commit is contained in:
Esteban Küber 2020-01-15 09:55:56 -08:00
parent 509cb33dbc
commit c305ac31c0
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@ Return types cannot be `dyn Trait`s as they must be `Sized`.
Erroneous code example:
```compile_fail,E0746
```compile_fail,E0277
# // FIXME: after E0746 is in beta, change the above
trait T {
fn bar(&self);
}