1
Fork 0

Fix test not to depend on environment

This commit is contained in:
Yuki Okushi 2020-01-11 10:15:54 +09:00
parent 54f860158b
commit 48cad460bc

View file

@ -1,15 +1,14 @@
// check-pass // check-pass
macro_rules! def_target { macro_rules! foo {
($target: expr) => { ($doc: expr) => {
#[target_feature(enable=$target)] fn f() {
unsafe fn f() { #[doc = $doc]
#[target_feature(enable=$target)]
() ()
} }
}; };
} }
def_target!("avx2"); foo!("doc");
fn main() {} fn main() {}