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
157 B
Rust
Raw Normal View History

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