Skip to content

Commit b4d2e2f

Browse files
Update UI tests that generates duplicated result
1 parent 30085b0 commit b4d2e2f

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

tests/ui/lifetimes/undeclared-lifetime-used-in-debug-macro-issue-70152.stderr

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ error[E0261]: use of undeclared lifetime name `'b`
1212
LL | #[derive(Eq, PartialEq)]
1313
| -- lifetime `'b` is missing in item created through this procedural macro
1414
LL | struct Test {
15-
| - help: consider introducing lifetime `'b` here: `<'b>`
1615
LL | a: &'b str,
1716
| ^^ undeclared lifetime
1817

tests/ui/pattern/usefulness/issue-119778-type-error-ice.stderr

-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ error[E0425]: cannot find value `S` in this scope
1414
|
1515
LL | struct Foo([u8; S]);
1616
| ^ not found in this scope
17-
|
18-
help: you might be missing a const parameter
19-
|
20-
LL | struct Foo<const S: /* Type */>([u8; S]);
21-
| +++++++++++++++++++++
2217

2318
error[E0658]: `impl Trait` in type aliases is unstable
2419
--> $DIR/issue-119778-type-error-ice.rs:9:14

tests/ui/traits/issue-50480.stderr

-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ error[E0412]: cannot find type `N` in this scope
2020
|
2121
LL | struct Foo(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
2222
| ^ not found in this scope
23-
|
24-
help: you might be missing a type parameter
25-
|
26-
LL | struct Foo<N>(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
27-
| +++
2823

2924
error[E0412]: cannot find type `NotDefined` in this scope
3025
--> $DIR/issue-50480.rs:3:15

0 commit comments

Comments
 (0)