summaryrefslogtreecommitdiffstats
path: root/tests/ui/lifetimes/auxiliary/issue-91763-aux.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/lifetimes/auxiliary/issue-91763-aux.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/lifetimes/auxiliary/issue-91763-aux.rs')
-rw-r--r--tests/ui/lifetimes/auxiliary/issue-91763-aux.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/ui/lifetimes/auxiliary/issue-91763-aux.rs b/tests/ui/lifetimes/auxiliary/issue-91763-aux.rs
new file mode 100644
index 000000000..0335f72b7
--- /dev/null
+++ b/tests/ui/lifetimes/auxiliary/issue-91763-aux.rs
@@ -0,0 +1,47 @@
+// force-host
+// no-prefer-dynamic
+
+#![crate_type = "proc-macro"]
+
+//#![feature(proc_macro_diagnostic, proc_macro_span, proc_macro_def_site)]
+
+extern crate proc_macro;
+
+use proc_macro::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree};
+use std::iter::FromIterator;
+
+#[proc_macro_attribute]
+pub fn repro(_args: TokenStream, input: TokenStream) -> TokenStream {
+ let call_site = Span::call_site();
+ let span = input.into_iter().nth(8).unwrap().span();
+
+ //fn f(_: &::std::fmt::Formatter) {}
+ TokenStream::from_iter([
+ TokenTree::Ident(Ident::new("fn", call_site)),
+ TokenTree::Ident(Ident::new("f", call_site)),
+ TokenTree::Group(Group::new(
+ Delimiter::Parenthesis,
+ TokenStream::from_iter([
+ TokenTree::Ident(Ident::new("_", call_site)),
+ TokenTree::Punct(punct(':', Spacing::Alone, call_site)),
+ TokenTree::Punct(punct('&', Spacing::Alone, call_site)),
+ TokenTree::Punct(punct(':', Spacing::Joint, span)),
+ TokenTree::Punct(punct(':', Spacing::Alone, span)),
+ TokenTree::Ident(Ident::new("std", span)),
+ TokenTree::Punct(punct(':', Spacing::Joint, span)),
+ TokenTree::Punct(punct(':', Spacing::Alone, span)),
+ TokenTree::Ident(Ident::new("fmt", span)),
+ TokenTree::Punct(punct(':', Spacing::Joint, span)),
+ TokenTree::Punct(punct(':', Spacing::Alone, span)),
+ TokenTree::Ident(Ident::new("Formatter", span)),
+ ]),
+ )),
+ TokenTree::Group(Group::new(Delimiter::Brace, TokenStream::new())),
+ ])
+}
+
+fn punct(ch: char, spacing: Spacing, span: Span) -> Punct {
+ let mut punct = Punct::new(ch, spacing);
+ punct.set_span(span);
+ punct
+}