From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/traits/inductive-overflow/lifetime.rs | 32 +++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/test/ui/traits/inductive-overflow/lifetime.rs (limited to 'src/test/ui/traits/inductive-overflow/lifetime.rs') diff --git a/src/test/ui/traits/inductive-overflow/lifetime.rs b/src/test/ui/traits/inductive-overflow/lifetime.rs new file mode 100644 index 000000000..c36c17d3d --- /dev/null +++ b/src/test/ui/traits/inductive-overflow/lifetime.rs @@ -0,0 +1,32 @@ +// Test that we don't hit the recursion limit for short cycles involving lifetimes. + +// Shouldn't hit this, we should realize that we're in a cycle sooner. +#![recursion_limit="20"] + +trait NotAuto {} +trait Y { + type P; +} + +impl<'a> Y for C<'a> { + type P = Box>>; +} + +struct C<'a>(&'a ()); +struct X(T::P); + +impl NotAuto for Box {} //~ NOTE: required +impl NotAuto for X where T::P: NotAuto {} +impl<'a> NotAuto for C<'a> {} + +fn is_send() {} +//~^ NOTE: required +//~| NOTE: required + +fn main() { + // Should only be a few notes. + is_send::>>(); + //~^ ERROR overflow evaluating + //~| 3 redundant requirements hidden + //~| required because of +} -- cgit v1.2.3