about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-06-17 21:35:11 +0000
committerMichael Goulet <michael@errs.io>2025-06-25 15:32:08 +0000
commit83044357930a7c55f8d429bd4cd7dcb7426d4b01 (patch)
tree66fc514c8556f7d94e139b14c933a27095c645a6 /tests
parent2801f9aaf9b7580d9b230b532b0700709857cc88 (diff)
downloadrust-83044357930a7c55f8d429bd4cd7dcb7426d4b01.tar.gz
rust-83044357930a7c55f8d429bd4cd7dcb7426d4b01.zip
Compute hard errors without diagnostics in impl_intersection_has_impossible_obligation
Diffstat (limited to 'tests')
-rw-r--r--tests/crashes/139905.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/crashes/139905.rs b/tests/crashes/139905.rs
deleted file mode 100644
index 7da622aaaba..00000000000
--- a/tests/crashes/139905.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-//@ known-bug: #139905
-trait a<const b: bool> {}
-impl a<{}> for () {}
-trait c {}
-impl<const d: u8> c for () where (): a<d> {}
-impl c for () {}