rust/tests/ui/transmutability/issue-101739-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
645 B
Plaintext
Raw Normal View History

error[E0107]: trait takes at most 2 generic arguments but 5 generic arguments were supplied
--> $DIR/issue-101739-2.rs:17:14
2022-10-03 08:51:18 +00:00
|
LL | Dst: TransmuteFrom<
| ^^^^^^^^^^^^^ expected at most 2 generic arguments
...
LL | ASSUME_ALIGNMENT,
| _________________________________-
LL | | ASSUME_LIFETIMES,
LL | | ASSUME_VALIDITY,
LL | | ASSUME_VISIBILITY,
| |_________________________________- help: remove the unnecessary generic arguments
2022-10-03 08:51:18 +00:00
error: aborting due to 1 previous error
2022-10-03 08:51:18 +00:00
For more information about this error, try `rustc --explain E0107`.