]> git.lizzy.rs Git - rust.git/blob - src/test/ui/dropck/drop-on-non-struct.stderr
c458635040a21c7542d5eca648abe6d774f5ab37
[rust.git] / src / test / ui / dropck / drop-on-non-struct.stderr
1 error[E0120]: the Drop trait may only be implemented on structures
2   --> $DIR/drop-on-non-struct.rs:1:19
3    |
4 LL | impl<'a> Drop for &'a mut isize {
5    |                   ^^^^^^^^^^^^^ implementing Drop requires a struct
6
7 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
8   --> $DIR/drop-on-non-struct.rs:1:1
9    |
10 LL | impl<'a> Drop for &'a mut isize {
11    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
12    |
13    = note: the impl does not reference any types defined in this crate
14    = note: define and implement a trait or new type instead
15
16 error: aborting due to 2 previous errors
17
18 Some errors occurred: E0117, E0120.
19 For more information about an error, try `rustc --explain E0117`.