rust/src/test/ui/error-codes/E0107.stderr

24 lines
736 B
Plaintext
Raw Normal View History

error[E0107]: wrong number of lifetime arguments: expected 2, found 1
2018-12-25 15:56:47 +00:00
--> $DIR/E0107.rs:11:11
2018-02-08 03:35:35 +00:00
|
2018-02-23 00:42:32 +00:00
LL | buzz: Buzz<'a>,
| ^^^^^^^^ expected 2 lifetime arguments
2018-02-08 03:35:35 +00:00
error[E0107]: wrong number of lifetime arguments: expected 0, found 1
2018-12-25 15:56:47 +00:00
--> $DIR/E0107.rs:14:14
2018-02-08 03:35:35 +00:00
|
2018-02-23 00:42:32 +00:00
LL | bar: Bar<'a>,
2018-08-20 11:52:56 +00:00
| ^^ unexpected lifetime argument
2018-02-08 03:35:35 +00:00
error[E0107]: wrong number of lifetime arguments: expected 1, found 3
2018-12-25 15:56:47 +00:00
--> $DIR/E0107.rs:17:19
2018-02-08 03:35:35 +00:00
|
2018-02-23 00:42:32 +00:00
LL | foo2: Foo<'a, 'b, 'c>,
| ^^ ^^ unexpected lifetime argument
| |
| unexpected lifetime argument
2018-02-08 03:35:35 +00:00
error: aborting due to 3 previous errors
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0107`.