rust/src/test/run-pass/issue2170exe.rs
Niko Matsakis 24e921f7d4 make anything used in a resource body always reachable
(they appear to be uncond. inlined)

Fixes #2170.
2012-04-09 16:36:59 -07:00

8 lines
156 B
Rust

// xfail-fast - check-fail fast doesn't under aux-build
// aux-build:issue2170lib.rs
use issue2170lib;
fn main() {
let _ = issue2170lib::rsrc(2i32);
}