From 9918693037dce8aa4bb6f08741b6812923486c18 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 19 Jun 2024 11:26:03 +0200 Subject: Merging upstream version 1.76.0+dfsg1. Signed-off-by: Daniel Baumann --- .../ui/traits/new-solver/overflow/global-cache.rs | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 tests/ui/traits/new-solver/overflow/global-cache.rs (limited to 'tests/ui/traits/new-solver/overflow/global-cache.rs') diff --git a/tests/ui/traits/new-solver/overflow/global-cache.rs b/tests/ui/traits/new-solver/overflow/global-cache.rs deleted file mode 100644 index adc03da04..000000000 --- a/tests/ui/traits/new-solver/overflow/global-cache.rs +++ /dev/null @@ -1,23 +0,0 @@ -// compile-flags: -Ztrait-solver=next - -// Check that we consider the reached depth of global cache -// entries when detecting overflow. We would otherwise be unstable -// wrt to incremental compilation. -#![recursion_limit = "9"] - -trait Trait {} - -struct Inc(T); - -impl Trait for Inc {} -impl Trait for () {} - -fn impls_trait() {} - -type Four = Inc>>>; - -fn main() { - impls_trait::>>(); - impls_trait::>>>>(); - //~^ ERROR overflow evaluating the requirement -} -- cgit v1.2.3