diff options
| author | Esteban Kuber <esteban@kuber.com.ar> | 2022-03-26 23:14:47 +0000 |
|---|---|---|
| committer | Esteban Kuber <esteban@kuber.com.ar> | 2022-04-04 21:06:35 +0000 |
| commit | e2bba0708a1e4b0c21f94de56c2bd5d66d3b825f (patch) | |
| tree | f69b605da80489e297384a9fdde5cc99396f4e8c /src/test/ui/kindck | |
| parent | 883b93c7b7eb02ec85f4b8f9fb129efc403d4fb2 (diff) | |
| download | rust-e2bba0708a1e4b0c21f94de56c2bd5d66d3b825f.tar.gz rust-e2bba0708a1e4b0c21f94de56c2bd5d66d3b825f.zip | |
Fix list length
Diffstat (limited to 'src/test/ui/kindck')
| -rw-r--r-- | src/test/ui/kindck/kindck-copy.stderr | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/kindck/kindck-copy.stderr b/src/test/ui/kindck/kindck-copy.stderr index 6272c4b7022..29c9b872b58 100644 --- a/src/test/ui/kindck/kindck-copy.stderr +++ b/src/test/ui/kindck/kindck-copy.stderr @@ -9,6 +9,10 @@ LL | assert_copy::<&'static mut isize>(); <f32 as Copy> <f64 as Copy> <i128 as Copy> + <i16 as Copy> + <i32 as Copy> + <i64 as Copy> + <i8 as Copy> and 6 others note: required by a bound in `assert_copy` --> $DIR/kindck-copy.rs:5:18 @@ -27,6 +31,10 @@ LL | assert_copy::<&'a mut isize>(); <f32 as Copy> <f64 as Copy> <i128 as Copy> + <i16 as Copy> + <i32 as Copy> + <i64 as Copy> + <i8 as Copy> and 6 others note: required by a bound in `assert_copy` --> $DIR/kindck-copy.rs:5:18 |
