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
macro_rules! def_target {
($target: expr) => {
#[target_feature(enable=$target)]
unsafe fn f() {
#[target_feature(enable=$target)]
macro_rules! foo {
($doc: expr) => {
fn f() {
#[doc = $doc]
()
}
};
}
def_target!("avx2");
foo!("doc");
fn main() {}