rust/tests/target/associated-items.rs
Aaron Gallagher 96d59366fc Don't misplace the :: on associated items.
The rewritten location of the :: on global paths for qpaths was wrong.
2016-05-02 17:11:22 -07:00

3 lines
80 B
Rust

fn main() {
println!("{}", <bool as ::std::default::Default>::default());
}