trpl-zh-cn/listings/ch15-smart-pointers/listing-15-09/output.txt
2022-02-06 16:43:51 +08:00

11 lines
355 B
Plaintext
Executable File

$ cargo run
Compiling deref-example v0.1.0 (file:///projects/deref-example)
error[E0614]: type `MyBox<{integer}>` cannot be dereferenced
--> src/main.rs:14:19
|
14 | assert_eq!(5, *y);
| ^^
For more information about this error, try `rustc --explain E0614`.
error: could not compile `deref-example` due to previous error