rust/tests/ui/msvc-data-only.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
159 B
Rust
Raw Normal View History

//@ run-pass
2015-09-26 01:48:54 +00:00
//@ aux-build:msvc-data-only-lib.rs
extern crate msvc_data_only_lib;
fn main() {
2015-09-26 01:48:54 +00:00
println!("The answer is {} !", msvc_data_only_lib::FOO);
}