Skip to content

Commit 27fef14

Browse files
committed
Rename tests
1 parent b07d42b commit 27fef14

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

tests/ui/delegation/recursive_delegation_errors.rs renamed to tests/ui/delegation/recursive-delegation-errors.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ mod second_mod {
1212
//~^ ERROR encountered a cycle during delegation signature resolution
1313
reuse bar as foo;
1414
//~^ ERROR encountered a cycle during delegation signature resolution
15-
1615
}
1716

1817
mod third_mod {

tests/ui/delegation/recursive_delegation_errors.stderr renamed to tests/ui/delegation/recursive-delegation-errors.stderr

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,95 @@
11
error: failed to resolve delegation callee
2-
--> $DIR/recursive_delegation_errors.rs:6:11
2+
--> $DIR/recursive-delegation-errors.rs:6:11
33
|
44
LL | reuse foo;
55
| ^^^
66

77
error: encountered a cycle during delegation signature resolution
8-
--> $DIR/recursive_delegation_errors.rs:11:11
8+
--> $DIR/recursive-delegation-errors.rs:11:11
99
|
1010
LL | reuse foo as bar;
1111
| ^^^
1212

1313
error: encountered a cycle during delegation signature resolution
14-
--> $DIR/recursive_delegation_errors.rs:13:11
14+
--> $DIR/recursive-delegation-errors.rs:13:11
1515
|
1616
LL | reuse bar as foo;
1717
| ^^^
1818

1919
error: encountered a cycle during delegation signature resolution
20-
--> $DIR/recursive_delegation_errors.rs:19:11
20+
--> $DIR/recursive-delegation-errors.rs:18:11
2121
|
2222
LL | reuse foo as foo1;
2323
| ^^^
2424

2525
error: encountered a cycle during delegation signature resolution
26-
--> $DIR/recursive_delegation_errors.rs:21:11
26+
--> $DIR/recursive-delegation-errors.rs:20:11
2727
|
2828
LL | reuse foo1 as foo2;
2929
| ^^^^
3030

3131
error: encountered a cycle during delegation signature resolution
32-
--> $DIR/recursive_delegation_errors.rs:23:11
32+
--> $DIR/recursive-delegation-errors.rs:22:11
3333
|
3434
LL | reuse foo2 as foo3;
3535
| ^^^^
3636

3737
error: encountered a cycle during delegation signature resolution
38-
--> $DIR/recursive_delegation_errors.rs:25:11
38+
--> $DIR/recursive-delegation-errors.rs:24:11
3939
|
4040
LL | reuse foo3 as foo4;
4141
| ^^^^
4242

4343
error: encountered a cycle during delegation signature resolution
44-
--> $DIR/recursive_delegation_errors.rs:27:11
44+
--> $DIR/recursive-delegation-errors.rs:26:11
4545
|
4646
LL | reuse foo4 as foo5;
4747
| ^^^^
4848

4949
error: encountered a cycle during delegation signature resolution
50-
--> $DIR/recursive_delegation_errors.rs:29:11
50+
--> $DIR/recursive-delegation-errors.rs:28:11
5151
|
5252
LL | reuse foo5 as foo;
5353
| ^^^^
5454

5555
error: encountered a cycle during delegation signature resolution
56-
--> $DIR/recursive_delegation_errors.rs:35:22
56+
--> $DIR/recursive-delegation-errors.rs:34:22
5757
|
5858
LL | reuse Trait::foo as bar;
5959
| ^^^
6060

6161
error: encountered a cycle during delegation signature resolution
62-
--> $DIR/recursive_delegation_errors.rs:37:22
62+
--> $DIR/recursive-delegation-errors.rs:36:22
6363
|
6464
LL | reuse Trait::bar as foo;
6565
| ^^^
6666

6767
error: encountered a cycle during delegation signature resolution
68-
--> $DIR/recursive_delegation_errors.rs:43:30
68+
--> $DIR/recursive-delegation-errors.rs:42:30
6969
|
7070
LL | reuse super::fifth_mod::{bar as foo, foo as bar};
7171
| ^^^
7272

7373
error: encountered a cycle during delegation signature resolution
74-
--> $DIR/recursive_delegation_errors.rs:43:42
74+
--> $DIR/recursive-delegation-errors.rs:42:42
7575
|
7676
LL | reuse super::fifth_mod::{bar as foo, foo as bar};
7777
| ^^^
7878

7979
error: encountered a cycle during delegation signature resolution
80-
--> $DIR/recursive_delegation_errors.rs:48:27
80+
--> $DIR/recursive-delegation-errors.rs:47:27
8181
|
8282
LL | reuse GlobReuse::{foo as bar, bar as goo, goo as foo};
8383
| ^^^
8484

8585
error: encountered a cycle during delegation signature resolution
86-
--> $DIR/recursive_delegation_errors.rs:48:39
86+
--> $DIR/recursive-delegation-errors.rs:47:39
8787
|
8888
LL | reuse GlobReuse::{foo as bar, bar as goo, goo as foo};
8989
| ^^^
9090

9191
error: encountered a cycle during delegation signature resolution
92-
--> $DIR/recursive_delegation_errors.rs:48:51
92+
--> $DIR/recursive-delegation-errors.rs:47:51
9393
|
9494
LL | reuse GlobReuse::{foo as bar, bar as goo, goo as foo};
9595
| ^^^
File renamed without changes.

0 commit comments

Comments
 (0)