Skip to content

Commit

Permalink
Clean up error codes E0223 and E0225 explanations
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jan 24, 2020
1 parent bf84eb5 commit 768f6f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/librustc_error_codes/error_codes/E0223.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
An attempt was made to retrieve an associated type, but the type was ambiguous.
For example:

Erroneous code example:

```compile_fail,E0223
trait MyTrait {type X; }
Expand Down
7 changes: 5 additions & 2 deletions src/librustc_error_codes/error_codes/E0225.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
You attempted to use multiple types as bounds for a closure or trait object.
Rust does not currently support this. A simple example that causes this error:
Multiple types were used as bounds for a closure or trait object.

Erroneous code example:

```compile_fail,E0225
fn main() {
let _: Box<dyn std::io::Read + std::io::Write>;
}
```

Rust does not currently support this.

Auto traits such as Send and Sync are an exception to this rule:
It's possible to have bounds of one non-builtin trait, plus any number of
auto traits. For example, the following compiles correctly:
Expand Down

0 comments on commit 768f6f9

Please sign in to comment.