|
| 1 | +error[E0107]: trait takes 1 generic argument but 2 generic arguments were supplied |
| 2 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:14:12 |
| 3 | + | |
| 4 | +LL | impl<T, S> Trait<T, S> for () {} |
| 5 | + | ^^^^^ expected 1 generic argument |
| 6 | + | |
| 7 | +note: trait defined here, with 1 generic parameter: `T` |
| 8 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:5:11 |
| 9 | + | |
| 10 | +LL | pub trait Trait<T> { |
| 11 | + | ^^^^^ - |
| 12 | + |
| 13 | +error[E0107]: trait takes 1 generic argument but 2 generic arguments were supplied |
| 14 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:18:12 |
| 15 | + | |
| 16 | +LL | fn func<T: Trait<u32, String>>(t: T) -> impl Trait<(), i32> { |
| 17 | + | ^^^^^ expected 1 generic argument |
| 18 | + | |
| 19 | +note: trait defined here, with 1 generic parameter: `T` |
| 20 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:5:11 |
| 21 | + | |
| 22 | +LL | pub trait Trait<T> { |
| 23 | + | ^^^^^ - |
| 24 | +help: replace the generic bound with the associated type |
| 25 | + | |
| 26 | +LL | fn func<T: Trait<u32, Assoc = String>>(t: T) -> impl Trait<(), i32> { |
| 27 | + | +++++++ |
| 28 | + |
| 29 | +error[E0107]: trait takes 1 generic argument but 2 generic arguments were supplied |
| 30 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:18:46 |
| 31 | + | |
| 32 | +LL | fn func<T: Trait<u32, String>>(t: T) -> impl Trait<(), i32> { |
| 33 | + | ^^^^^ expected 1 generic argument |
| 34 | + | |
| 35 | +note: trait defined here, with 1 generic parameter: `T` |
| 36 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:5:11 |
| 37 | + | |
| 38 | +LL | pub trait Trait<T> { |
| 39 | + | ^^^^^ - |
| 40 | +help: replace the generic bound with the associated type |
| 41 | + | |
| 42 | +LL | fn func<T: Trait<u32, String>>(t: T) -> impl Trait<(), Assoc = i32> { |
| 43 | + | +++++++ |
| 44 | + |
| 45 | +error[E0107]: trait takes 1 generic argument but 2 generic arguments were supplied |
| 46 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:24:18 |
| 47 | + | |
| 48 | +LL | struct Struct<T: Trait<u32, String>> { |
| 49 | + | ^^^^^ expected 1 generic argument |
| 50 | + | |
| 51 | +note: trait defined here, with 1 generic parameter: `T` |
| 52 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:5:11 |
| 53 | + | |
| 54 | +LL | pub trait Trait<T> { |
| 55 | + | ^^^^^ - |
| 56 | +help: replace the generic bound with the associated type |
| 57 | + | |
| 58 | +LL | struct Struct<T: Trait<u32, Assoc = String>> { |
| 59 | + | +++++++ |
| 60 | + |
| 61 | +error[E0107]: trait takes 1 generic argument but 2 generic arguments were supplied |
| 62 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:29:23 |
| 63 | + | |
| 64 | +LL | trait AnotherTrait<T: Trait<T, i32>> {} |
| 65 | + | ^^^^^ expected 1 generic argument |
| 66 | + | |
| 67 | +note: trait defined here, with 1 generic parameter: `T` |
| 68 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:5:11 |
| 69 | + | |
| 70 | +LL | pub trait Trait<T> { |
| 71 | + | ^^^^^ - |
| 72 | +help: replace the generic bound with the associated type |
| 73 | + | |
| 74 | +LL | trait AnotherTrait<T: Trait<T, Assoc = i32>> {} |
| 75 | + | +++++++ |
| 76 | + |
| 77 | +error[E0107]: trait takes 1 generic argument but 2 generic arguments were supplied |
| 78 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:32:9 |
| 79 | + | |
| 80 | +LL | impl<T: Trait<u32, String>> Struct<T> {} |
| 81 | + | ^^^^^ expected 1 generic argument |
| 82 | + | |
| 83 | +note: trait defined here, with 1 generic parameter: `T` |
| 84 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:5:11 |
| 85 | + | |
| 86 | +LL | pub trait Trait<T> { |
| 87 | + | ^^^^^ - |
| 88 | +help: replace the generic bound with the associated type |
| 89 | + | |
| 90 | +LL | impl<T: Trait<u32, Assoc = String>> Struct<T> {} |
| 91 | + | +++++++ |
| 92 | + |
| 93 | +error[E0107]: struct takes 1 generic argument but 2 generic arguments were supplied |
| 94 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:38:58 |
| 95 | + | |
| 96 | +LL | impl<T: Trait<u32, Assoc=String>, U> YetAnotherTrait for Struct<T, U> {} |
| 97 | + | ^^^^^^ - help: remove this generic argument |
| 98 | + | | |
| 99 | + | expected 1 generic argument |
| 100 | + | |
| 101 | +note: struct defined here, with 1 generic parameter: `T` |
| 102 | + --> $DIR/116464-invalid-assoc-type-suggestion-in-trait-impl.rs:24:8 |
| 103 | + | |
| 104 | +LL | struct Struct<T: Trait<u32, String>> { |
| 105 | + | ^^^^^^ - |
| 106 | + |
| 107 | +error: aborting due to 7 previous errors |
| 108 | + |
| 109 | +For more information about this error, try `rustc --explain E0107`. |
0 commit comments