blob: c6f2cc99e33cb34042bab2286ae03ddbca32b5b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// xfail-test
// aux-build:issue_2242_a.rs
// aux-build:issue_2242_b.rs
// aux-build:issue_2242_c.rs
use a;
use b;
use c;
import b::to_str;
import c::to_str;
fn main() {
io::println("foo".to_str());
io::println(1.to_str());
io::println(true.to_str());
}
|