summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0107.stderr
blob: 486810ab113cc4631bf672b20b170c474f2e6bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
  --> $DIR/E0107.rs:11:11
   |
LL |     buzz: Buzz<'a>,
   |           ^^^^^^^^ expected 2 lifetime arguments

error[E0107]: wrong number of lifetime arguments: expected 0, found 1
  --> $DIR/E0107.rs:14:14
   |
LL |     bar: Bar<'a>,
   |              ^^ unexpected lifetime argument

error[E0107]: wrong number of lifetime arguments: expected 1, found 3
  --> $DIR/E0107.rs:17:19
   |
LL |     foo2: Foo<'a, 'b, 'c>,
   |                   ^^  ^^ unexpected lifetime argument
   |                   |
   |                   unexpected lifetime argument

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0107`.