Skip to content

Commit 1ebf6d1

Browse files
committed
Bless tests.
1 parent 1fb9cad commit 1ebf6d1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/test/ui/dep-graph/dep-graph-variance-alias.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#![feature(rustc_attrs)]
77
#![allow(dead_code)]
88
#![allow(unused_variables)]
9-
#![rustc_if_this_changed(hir_crate)]
109
fn main() {}
1110

11+
#[rustc_if_this_changed]
1212
struct Foo<T> {
1313
f: T,
1414
}

src/test/ui/multiple-plugin-registrars.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ LL | #[plugin_registrar]
1515
error: multiple plugin registration functions found
1616
|
1717
note: one is here
18-
--> $DIR/multiple-plugin-registrars.rs:7:1
18+
--> $DIR/multiple-plugin-registrars.rs:10:1
1919
|
20-
LL | pub fn one() {}
20+
LL | pub fn two() {}
2121
| ^^^^^^^^^^^^^^^
2222
note: one is here
23-
--> $DIR/multiple-plugin-registrars.rs:10:1
23+
--> $DIR/multiple-plugin-registrars.rs:7:1
2424
|
25-
LL | pub fn two() {}
25+
LL | pub fn one() {}
2626
| ^^^^^^^^^^^^^^^
2727

2828
error: aborting due to previous error; 2 warnings emitted

0 commit comments

Comments
 (0)