blob: 6283486039c8d70c3531f4480d001b684dc7e77a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
error[E0107]: wrong number of lifetime parameters: expected 2, found 1
--> $DIR/E0107.rs:21:11
|
21 | buzz: Buzz<'a>,
| ^^^^^^^^ expected 2 lifetime parameters
error[E0107]: wrong number of lifetime parameters: expected 0, found 1
--> $DIR/E0107.rs:24:10
|
24 | bar: Bar<'a>,
| ^^^^^^^ unexpected lifetime parameter
error[E0107]: wrong number of lifetime parameters: expected 1, found 3
--> $DIR/E0107.rs:27:11
|
27 | foo2: Foo<'a, 'b, 'c>,
| ^^^^^^^^^^^^^^^ 2 unexpected lifetime parameters
error: aborting due to 3 previous errors
|