summary refs log tree commit diff
path: root/tests/ui/attributes/auxiliary
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-05-09 20:37:37 +0000
committerbors <bors@rust-lang.org>2025-05-09 20:37:37 +0000
commit17067e9ac6d7ecb70e50f92c1944e545188d2359 (patch)
tree10cdfd82bfa6bb95d7e99b7ab53d8121fc7a8913 /tests/ui/attributes/auxiliary
parentaf91af44eb85ceac634afa72cc73be4af358b350 (diff)
parent908c30b3e1b758d46501de460163e9761c65534f (diff)
downloadrust-1.87.0.tar.gz
rust-1.87.0.zip
Auto merge of #140859 - pietroalbini:pa-stable, r=pietroalbini 1.87.0
[stable] Prepare the 1.87.0 release

Preparing the stable artifacts as described in the release process.

This PR also includes the following last minute backports:

* https://github.com/rust-lang/rust/pull/140810
* https://github.com/rust-lang/rust/pull/140601
* https://github.com/rust-lang/rust/pull/140684

r? `@ghost`
Diffstat (limited to 'tests/ui/attributes/auxiliary')
-rw-r--r--tests/ui/attributes/auxiliary/derive_macro_with_helper.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/attributes/auxiliary/derive_macro_with_helper.rs b/tests/ui/attributes/auxiliary/derive_macro_with_helper.rs
new file mode 100644
index 00000000000..128af50ce36
--- /dev/null
+++ b/tests/ui/attributes/auxiliary/derive_macro_with_helper.rs
@@ -0,0 +1,8 @@
+extern crate proc_macro;
+
+use proc_macro::TokenStream;
+
+#[proc_macro_derive(Derive, attributes(arg))]
+pub fn derive(_: TokenStream) -> TokenStream {
+    TokenStream::new()
+}