Skip to content

Commit d669486

Browse files
committed
test: Fix cyclic import in class-cast-to-iface-cross-crate-2
1 parent 25e0455 commit d669486

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/run-pass/class-cast-to-iface-cross-crate-2.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
// xfail-fast
22
// aux-build:cci_class_cast.rs
33
use cci_class_cast;
4-
import cci_class_cast::kitty::*;
54
import to_str::*;
6-
import to_str::to_str;
5+
import cci_class_cast::kitty::*;
76

87
fn print_out<T: to_str>(thing: T, expected: str) {
98
let actual = thing.to_str();

0 commit comments

Comments
 (0)