Navigation Menu

Skip to content

Commit

Permalink
Converted test to rpass.
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimcn committed Sep 26, 2015
1 parent e82bb91 commit c21fcac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// no-prefer-dynamic

#![crate_type = "rlib"]

pub static FOO: i32 = 42;
8 changes: 0 additions & 8 deletions src/test/run-make/msvc-data-only/Makefile

This file was deleted.

Expand Up @@ -8,8 +8,10 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

extern crate foo;
// aux-build:msvc-data-only-lib.rs

extern crate msvc_data_only_lib;

fn main() {
println!("The answer is {} !", foo::FOO);
println!("The answer is {} !", msvc_data_only_lib::FOO);
}

0 comments on commit c21fcac

Please sign in to comment.