]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0117.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0117.stderr
CommitLineData
2c00a5a8 1error[E0120]: the Drop trait may only be implemented on structures
0731742a 2 --> $DIR/E0117.rs:1:15
2c00a5a8 3 |
532ac7d7 4LL | impl Drop for u32 {}
2c00a5a8
XL
5 | ^^^ implementing Drop requires a struct
6
7error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
0731742a 8 --> $DIR/E0117.rs:1:1
2c00a5a8 9 |
532ac7d7 10LL | impl Drop for u32 {}
0531ce1d 11 | ^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
2c00a5a8 12 |
0731742a 13 = note: the impl does not reference only types defined in this crate
2c00a5a8
XL
14 = note: define and implement a trait or new type instead
15
16error: aborting due to 2 previous errors
17
0531ce1d
XL
18Some errors occurred: E0117, E0120.
19For more information about an error, try `rustc --explain E0117`.