summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.rs')
-rw-r--r--tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.rs b/tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.rs
index 781f50e61..b776f2017 100644
--- a/tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.rs
+++ b/tests/ui/const-generics/const-param-type-depends-on-type-param-ungated.rs
@@ -1,6 +1,3 @@
-// compile-flags: -Zsave-analysis
-// Regression test for #69414 ^
-
use std::marker::PhantomData;
struct B<T, const N: T>(PhantomData<[T; N]>);