diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-06-03 11:18:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-03 11:18:26 +0200 |
| commit | b71ddd68619b417272f77a89b5eab04f6bc64534 (patch) | |
| tree | ae1abd05522134063139dd55ff355eee914bd930 /library/std/src/sys/unix/stack_overflow.rs | |
| parent | a6d79398559b2f8e423391a0ebb394228b03064b (diff) | |
| parent | f9aa2e02cdfdeea64ed58d2956047c2c155186f3 (diff) | |
| download | rust-b71ddd68619b417272f77a89b5eab04f6bc64534.tar.gz rust-b71ddd68619b417272f77a89b5eab04f6bc64534.zip | |
Rollup merge of #97664 - estebank:suggest-bound-derive-copy, r=compiler-errors
On E0204 suggest missing type param bounds
```
error[E0204]: the trait `Copy` may not be implemented for this type
--> f42.rs:9:17
|
9 | #[derive(Debug, Copy, Clone)]
| ^^^^
10 | pub struct AABB<K>{
11 | pub loc: Vector2<K>,
| ------------------- this field does not implement `Copy`
12 | pub size: Vector2<K>
| -------------------- this field does not implement `Copy`
|
note: the `Copy` impl for `Vector2<K>` requires that `K: Debug`
--> f42.rs:11:5
|
11 | pub loc: Vector2<K>,
| ^^^^^^^^^^^^^^^^^^^
note: the `Copy` impl for `Vector2<K>` requires that `K: Debug`
--> f42.rs:12:5
|
12 | pub size: Vector2<K>
| ^^^^^^^^^^^^^^^^^^^^
= note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider restricting type parameter `K`
|
10 | pub struct AABB<K: Debug>{
| +++++++
```
Fix #89137.
Diffstat (limited to 'library/std/src/sys/unix/stack_overflow.rs')
0 files changed, 0 insertions, 0 deletions
