about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorOli Scherer <github333195615777966@oli-obk.de>2025-06-05 10:26:30 +0000
committerOli Scherer <github333195615777966@oli-obk.de>2025-06-05 13:37:34 +0000
commit9949ea73c16e2de911ece49d3fceb649a6c11ef0 (patch)
tree4d86ea234bcb348556316b1c98e0b225246c6af6 /tests
parentbfe4c5f78c686a239bce276ae0404097da65ce0d (diff)
Move generic arg checks from the hir item types visitor to ty wfcheck
Diffstat (limited to 'tests')
-rw-r--r--tests/crashes/121429.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/crashes/121429.rs b/tests/crashes/121429.rs
deleted file mode 100644
index e407754db5c..00000000000
--- a/tests/crashes/121429.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-//@ known-bug: #121429
-
-#![feature(generic_const_exprs)]
-
-struct FixedI8<const X: usize>;
-const FRAC_LHS: usize = 0;
-const FRAC_RHS: usize = 1;
-
-pub trait True {}
-
-impl<const N: usize = { const { 3 } }> PartialEq<FixedI8<FRAC_RHS>> for FixedI8<FRAC_LHS> where
-    If<{}>: True
-{
-}