Skip to content

Commit 5e9dc84

Browse files
author
Jonathan Turner
authored
Fix tidy warning
1 parent 913d2f7 commit 5e9dc84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/compile-fail/E0033.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ trait SomeTrait {
1414

1515
fn main() {
1616
let trait_obj: &SomeTrait = SomeTrait; //~ ERROR E0425
17-
//~^ ERROR E0038
18-
//~| method `foo` has no receiver
19-
//~| NOTE the trait `SomeTrait` cannot be made into an object
17+
//~^ ERROR E0038
18+
//~| method `foo` has no receiver
19+
//~| NOTE the trait `SomeTrait` cannot be made into an object
2020

2121
let &invalid = trait_obj;
2222
//~^ ERROR E0033

0 commit comments

Comments
 (0)