summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-4252.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /tests/ui/issues/issue-4252.rs
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-4252.rs')
-rw-r--r--tests/ui/issues/issue-4252.rs33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-4252.rs b/tests/ui/issues/issue-4252.rs
new file mode 100644
index 000000000..0d47a7f0c
--- /dev/null
+++ b/tests/ui/issues/issue-4252.rs
@@ -0,0 +1,33 @@
+// run-pass
+trait X {
+ fn call<T: std::fmt::Debug>(&self, x: &T);
+ fn default_method<T: std::fmt::Debug>(&self, x: &T) {
+ println!("X::default_method {:?}", x);
+ }
+}
+
+#[derive(Debug)]
+struct Y(#[allow(unused_tuple_struct_fields)] isize);
+
+#[derive(Debug)]
+struct Z<T: X+std::fmt::Debug> {
+ x: T
+}
+
+impl X for Y {
+ fn call<T: std::fmt::Debug>(&self, x: &T) {
+ println!("X::call {:?} {:?}", self, x);
+ }
+}
+
+impl<T: X + std::fmt::Debug> Drop for Z<T> {
+ fn drop(&mut self) {
+ // These statements used to cause an ICE.
+ self.x.call(self);
+ self.x.default_method(self);
+ }
+}
+
+pub fn main() {
+ let _z = Z {x: Y(42)};
+}