about summary refs log tree commit diff
path: root/tests/ui/sized-hierarchy/overflow.rs
diff options
context:
space:
mode:
authorDavid Wood <david.wood2@arm.com>2025-05-13 06:44:21 +0000
committerDavid Wood <david.wood2@arm.com>2025-06-16 23:04:35 +0000
commit5d17987d7189a883c3c42a6eb17255e2ea060d6f (patch)
treef03cc011f347c12001a5f466c82fcefb956f9667 /tests/ui/sized-hierarchy/overflow.rs
parent8f19fd08413fec85cd69e98f26d029fb9ba3800a (diff)
downloadrust-5d17987d7189a883c3c42a6eb17255e2ea060d6f.tar.gz
rust-5d17987d7189a883c3c42a6eb17255e2ea060d6f.zip
tests: add overflow test
This test case is a reduction from the `hwc` crate on GitHub, following a
crater run. It passes with the next solver but fails on the current
solver due to a known limitation of the current solver. It starts fails
on the current solver with the `sized_hierarchy` changes because `?Sized`
is now a proper bound.
Diffstat (limited to 'tests/ui/sized-hierarchy/overflow.rs')
-rw-r--r--tests/ui/sized-hierarchy/overflow.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/sized-hierarchy/overflow.rs b/tests/ui/sized-hierarchy/overflow.rs
new file mode 100644
index 00000000000..e1af4885e53
--- /dev/null
+++ b/tests/ui/sized-hierarchy/overflow.rs
@@ -0,0 +1,21 @@
+//@ compile-flags: --crate-type=lib
+//@ revisions: current next
+//@ ignore-compare-mode-next-solver (explicit revisions)
+//@[next] check-pass
+//@[next] compile-flags: -Znext-solver
+
+use std::marker::PhantomData;
+
+trait ParseTokens {
+    type Output;
+}
+impl<T: ParseTokens + ?Sized> ParseTokens for Box<T> {
+    type Output = ();
+}
+
+struct Element(<Box<Box<Element>> as ParseTokens>::Output);
+//[current]~^ ERROR overflow evaluating
+impl ParseTokens for Element {
+//[current]~^ ERROR overflow evaluating
+    type Output = ();
+}