Fix test not to depend on environment
This commit is contained in:
parent
54f860158b
commit
48cad460bc
1 changed files with 5 additions and 6 deletions
|
@ -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() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue