1
1
error[E0277]: the trait bound `(): bad_on_unimplemented::MissingAttr` is not satisfied
2
- --> $DIR/malformed_foreign_on_unimplemented.rs:22 :18
2
+ --> $DIR/malformed_foreign_on_unimplemented.rs:23 :18
3
3
|
4
4
LL | missing_attr(());
5
5
| ------------ ^^ the trait `bad_on_unimplemented::MissingAttr` is not implemented for `()`
6
6
| |
7
7
| required by a bound introduced by this call
8
8
|
9
9
note: required by a bound in `missing_attr`
10
- --> $DIR/malformed_foreign_on_unimplemented.rs:11 :20
10
+ --> $DIR/malformed_foreign_on_unimplemented.rs:12 :20
11
11
|
12
12
LL | fn missing_attr<T: MissingAttr>(_: T) {}
13
13
| ^^^^^^^^^^^ required by this bound in `missing_attr`
14
14
15
15
error[E0277]: the trait bound `(): bad_on_unimplemented::DuplicateAttr` is not satisfied
16
- --> $DIR/malformed_foreign_on_unimplemented.rs:23 :20
16
+ --> $DIR/malformed_foreign_on_unimplemented.rs:24 :20
17
17
|
18
18
LL | duplicate_attr(());
19
19
| -------------- ^^ a
@@ -22,55 +22,55 @@ LL | duplicate_attr(());
22
22
|
23
23
= help: the trait `bad_on_unimplemented::DuplicateAttr` is not implemented for `()`
24
24
note: required by a bound in `duplicate_attr`
25
- --> $DIR/malformed_foreign_on_unimplemented.rs:12 :22
25
+ --> $DIR/malformed_foreign_on_unimplemented.rs:13 :22
26
26
|
27
27
LL | fn duplicate_attr<T: DuplicateAttr>(_: T) {}
28
28
| ^^^^^^^^^^^^^ required by this bound in `duplicate_attr`
29
29
30
30
error[E0277]: the trait bound `(): bad_on_unimplemented::NotMetaList` is not satisfied
31
- --> $DIR/malformed_foreign_on_unimplemented.rs:24 :19
31
+ --> $DIR/malformed_foreign_on_unimplemented.rs:25 :19
32
32
|
33
33
LL | not_meta_list(());
34
34
| ------------- ^^ the trait `bad_on_unimplemented::NotMetaList` is not implemented for `()`
35
35
| |
36
36
| required by a bound introduced by this call
37
37
|
38
38
note: required by a bound in `not_meta_list`
39
- --> $DIR/malformed_foreign_on_unimplemented.rs:13 :21
39
+ --> $DIR/malformed_foreign_on_unimplemented.rs:14 :21
40
40
|
41
41
LL | fn not_meta_list<T: NotMetaList>(_: T) {}
42
42
| ^^^^^^^^^^^ required by this bound in `not_meta_list`
43
43
44
44
error[E0277]: the trait bound `(): bad_on_unimplemented::Empty` is not satisfied
45
- --> $DIR/malformed_foreign_on_unimplemented.rs:25 :11
45
+ --> $DIR/malformed_foreign_on_unimplemented.rs:26 :11
46
46
|
47
47
LL | empty(());
48
48
| ----- ^^ the trait `bad_on_unimplemented::Empty` is not implemented for `()`
49
49
| |
50
50
| required by a bound introduced by this call
51
51
|
52
52
note: required by a bound in `empty`
53
- --> $DIR/malformed_foreign_on_unimplemented.rs:14 :13
53
+ --> $DIR/malformed_foreign_on_unimplemented.rs:15 :13
54
54
|
55
55
LL | fn empty<T: Empty>(_: T) {}
56
56
| ^^^^^ required by this bound in `empty`
57
57
58
58
error[E0277]: the trait bound `(): bad_on_unimplemented::WrongDelim` is not satisfied
59
- --> $DIR/malformed_foreign_on_unimplemented.rs:26 :17
59
+ --> $DIR/malformed_foreign_on_unimplemented.rs:27 :17
60
60
|
61
61
LL | wrong_delim(());
62
62
| ----------- ^^ the trait `bad_on_unimplemented::WrongDelim` is not implemented for `()`
63
63
| |
64
64
| required by a bound introduced by this call
65
65
|
66
66
note: required by a bound in `wrong_delim`
67
- --> $DIR/malformed_foreign_on_unimplemented.rs:15 :19
67
+ --> $DIR/malformed_foreign_on_unimplemented.rs:16 :19
68
68
|
69
69
LL | fn wrong_delim<T: WrongDelim>(_: T) {}
70
70
| ^^^^^^^^^^ required by this bound in `wrong_delim`
71
71
72
72
error[E0277]: the trait bound `(): bad_on_unimplemented::BadFormatter<()>` is not satisfied
73
- --> $DIR/malformed_foreign_on_unimplemented.rs:27 :19
73
+ --> $DIR/malformed_foreign_on_unimplemented.rs:28 :19
74
74
|
75
75
LL | bad_formatter(());
76
76
| ------------- ^^ ()
@@ -79,13 +79,13 @@ LL | bad_formatter(());
79
79
|
80
80
= help: the trait `bad_on_unimplemented::BadFormatter<()>` is not implemented for `()`
81
81
note: required by a bound in `bad_formatter`
82
- --> $DIR/malformed_foreign_on_unimplemented.rs:16 :21
82
+ --> $DIR/malformed_foreign_on_unimplemented.rs:17 :21
83
83
|
84
84
LL | fn bad_formatter<T: BadFormatter<()>>(_: T) {}
85
85
| ^^^^^^^^^^^^^^^^ required by this bound in `bad_formatter`
86
86
87
87
error[E0277]: the trait bound `(): bad_on_unimplemented::NoImplicitArgs` is not satisfied
88
- --> $DIR/malformed_foreign_on_unimplemented.rs:28 :22
88
+ --> $DIR/malformed_foreign_on_unimplemented.rs:29 :22
89
89
|
90
90
LL | no_implicit_args(());
91
91
| ---------------- ^^ test {}
@@ -94,13 +94,13 @@ LL | no_implicit_args(());
94
94
|
95
95
= help: the trait `bad_on_unimplemented::NoImplicitArgs` is not implemented for `()`
96
96
note: required by a bound in `no_implicit_args`
97
- --> $DIR/malformed_foreign_on_unimplemented.rs:17 :24
97
+ --> $DIR/malformed_foreign_on_unimplemented.rs:18 :24
98
98
|
99
99
LL | fn no_implicit_args<T: NoImplicitArgs>(_: T) {}
100
100
| ^^^^^^^^^^^^^^ required by this bound in `no_implicit_args`
101
101
102
102
error[E0277]: the trait bound `(): bad_on_unimplemented::MissingArg` is not satisfied
103
- --> $DIR/malformed_foreign_on_unimplemented.rs:29 :17
103
+ --> $DIR/malformed_foreign_on_unimplemented.rs:30 :17
104
104
|
105
105
LL | missing_arg(());
106
106
| ----------- ^^ {missing}
@@ -109,13 +109,13 @@ LL | missing_arg(());
109
109
|
110
110
= help: the trait `bad_on_unimplemented::MissingArg` is not implemented for `()`
111
111
note: required by a bound in `missing_arg`
112
- --> $DIR/malformed_foreign_on_unimplemented.rs:18 :19
112
+ --> $DIR/malformed_foreign_on_unimplemented.rs:19 :19
113
113
|
114
114
LL | fn missing_arg<T: MissingArg>(_: T) {}
115
115
| ^^^^^^^^^^ required by this bound in `missing_arg`
116
116
117
117
error[E0277]: the trait bound `(): bad_on_unimplemented::BadArg` is not satisfied
118
- --> $DIR/malformed_foreign_on_unimplemented.rs:30 :13
118
+ --> $DIR/malformed_foreign_on_unimplemented.rs:31 :13
119
119
|
120
120
LL | bad_arg(());
121
121
| ------- ^^ {_}
@@ -124,7 +124,7 @@ LL | bad_arg(());
124
124
|
125
125
= help: the trait `bad_on_unimplemented::BadArg` is not implemented for `()`
126
126
note: required by a bound in `bad_arg`
127
- --> $DIR/malformed_foreign_on_unimplemented.rs:19 :15
127
+ --> $DIR/malformed_foreign_on_unimplemented.rs:20 :15
128
128
|
129
129
LL | fn bad_arg<T: BadArg>(_: T) {}
130
130
| ^^^^^^ required by this bound in `bad_arg`
0 commit comments