Add test of macro calls inside extern block
This commit is contained in:
parent
e0c7b7d5d3
commit
8e94761a94
@ -77,3 +77,16 @@ unsafe fn foo(
|
||||
extern {
|
||||
|
||||
}
|
||||
|
||||
macro_rules! x {
|
||||
($tt:tt) => {};
|
||||
}
|
||||
|
||||
extern "macros" {
|
||||
x!(ident);
|
||||
// x!(#); FIXME
|
||||
x![ident];
|
||||
// x![#]; FIXME
|
||||
x! {ident}
|
||||
x! {#}
|
||||
}
|
||||
|
@ -82,3 +82,16 @@ pub fn freopen(
|
||||
}
|
||||
|
||||
extern "C" {}
|
||||
|
||||
macro_rules! x {
|
||||
($tt:tt) => {};
|
||||
}
|
||||
|
||||
extern "macros" {
|
||||
x!(ident);
|
||||
// x!(#); FIXME
|
||||
x![ident];
|
||||
// x![#]; FIXME
|
||||
x! {ident}
|
||||
x! {#}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user