rust/src/test/ui/traits/trait-test-2.stderr

42 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-08-19 18:08:01 -05:00
error[E0087]: wrong number of type arguments: expected 0, found 1
2018-08-20 06:52:56 -05:00
--> $DIR/trait-test-2.rs:18:14
2018-08-08 07:28:26 -05:00
|
2018-08-19 18:08:01 -05:00
LL | 10.dup::<i32>(); //~ ERROR wrong number of type arguments: expected 0, found 1
2018-08-20 06:52:56 -05:00
| ^^^ unexpected type argument
2018-08-08 07:28:26 -05:00
2018-08-19 18:08:01 -05:00
error[E0087]: wrong number of type arguments: expected 1, found 2
2018-08-20 06:52:56 -05:00
--> $DIR/trait-test-2.rs:19:20
2018-08-08 07:28:26 -05:00
|
2018-08-19 18:08:01 -05:00
LL | 10.blah::<i32, i32>(); //~ ERROR wrong number of type arguments: expected 1, found 2
2018-08-20 06:52:56 -05:00
| ^^^ unexpected type argument
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `dyn bar: bar` is not satisfied
--> $DIR/trait-test-2.rs:20:26
|
LL | (box 10 as Box<bar>).dup();
| ^^^ the trait `bar` is not implemented for `dyn bar`
error[E0038]: the trait `bar` cannot be made into an object
--> $DIR/trait-test-2.rs:20:16
|
LL | (box 10 as Box<bar>).dup();
| ^^^^^^^^ the trait `bar` cannot be made into an object
|
= note: method `dup` references the `Self` type in its arguments or return type
= note: method `blah` has generic type parameters
error[E0038]: the trait `bar` cannot be made into an object
--> $DIR/trait-test-2.rs:20:6
|
LL | (box 10 as Box<bar>).dup();
| ^^^^^^ the trait `bar` cannot be made into an object
|
= note: method `dup` references the `Self` type in its arguments or return type
= note: method `blah` has generic type parameters
= note: required because of the requirements on the impl of `std::ops::CoerceUnsized<std::boxed::Box<dyn bar>>` for `std::boxed::Box<{integer}>`
error: aborting due to 5 previous errors
Some errors occurred: E0038, E0087, E0277.
For more information about an error, try `rustc --explain E0038`.