We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0c7b7d commit 8e94761Copy full SHA for 8e94761
tests/source/extern.rs
@@ -77,3 +77,16 @@ libc::c_long;
77
extern {
78
79
}
80
+
81
+macro_rules! x {
82
+ ($tt:tt) => {};
83
+}
84
85
+extern "macros" {
86
+ x!(ident);
87
+ // x!(#); FIXME
88
+ x![ident];
89
+ // x![#]; FIXME
90
+ x! {ident}
91
+ x! {#}
92
tests/target/extern.rs
@@ -82,3 +82,16 @@ extern "C" {
extern "C" {}
93
94
95
96
97
0 commit comments