blob: 6b9489c74c8af6f5bcffe949d87219ffd5b04d87 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0225]: only auto traits can be used as additional traits in a trait object
--> $DIR/E0225.rs:12:32
|
LL | let _: Box<std::io::Read + std::io::Write>;
| ^^^^^^^^^^^^^^ non-auto additional trait
error: aborting due to previous error
For more information about this error, try `rustc --explain E0225`.
|