diff --git a/src/test/run-pass/associated-const-outer-ty-refs.rs b/src/test/run-pass/associated-const-outer-ty-refs.rs index a603b225132d4..2e6fb11a12d6b 100644 --- a/src/test/run-pass/associated-const-outer-ty-refs.rs +++ b/src/test/run-pass/associated-const-outer-ty-refs.rs @@ -13,8 +13,7 @@ trait Lattice { const BOTTOM: Self; } -// FIXME(#33573): this should work without the 'static lifetime bound. -impl Lattice for Option { +impl Lattice for Option { const BOTTOM: Option = None; }