2023-06-27 23:13:50 +02:00
|
|
|
error: the type `&<() as Foo>::Item` is not well-formed
|
|
|
|
--> $DIR/alias-bound-unsound.rs:23:31
|
2023-06-23 15:58:09 +00:00
|
|
|
|
|
|
|
|
LL | drop(<() as Foo>::copy_me(&x));
|
2023-06-27 23:13:50 +02:00
|
|
|
| ^^
|
2023-06-23 15:58:09 +00:00
|
|
|
|
2023-06-23 16:26:22 +00:00
|
|
|
error: the type `<() as Foo>::Item` is not well-formed
|
2023-06-23 15:58:09 +00:00
|
|
|
--> $DIR/alias-bound-unsound.rs:23:10
|
|
|
|
|
|
|
|
|
LL | drop(<() as Foo>::copy_me(&x));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-06-27 23:13:50 +02:00
|
|
|
error: aborting due to 2 previous errors
|
2023-04-22 03:11:25 +00:00
|
|
|
|