diff options
Diffstat (limited to 'third_party/rust/proc-macro-hack/tests/ui/unknown-arg.rs')
-rw-r--r-- | third_party/rust/proc-macro-hack/tests/ui/unknown-arg.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/rust/proc-macro-hack/tests/ui/unknown-arg.rs b/third_party/rust/proc-macro-hack/tests/ui/unknown-arg.rs new file mode 100644 index 0000000000..aa9b82c8f4 --- /dev/null +++ b/third_party/rust/proc-macro-hack/tests/ui/unknown-arg.rs @@ -0,0 +1,6 @@ +use proc_macro_hack::proc_macro_hack; + +#[proc_macro_hack(fake_call_site, support_nexted)] +pub use demo::some_macro; + +fn main() {} |