From 388795c7a1c647246a1a24f0f86e01a6a88d9293 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 20 Mar 2024 12:10:42 +0900 Subject: [PATCH] Update associated_type_bounds test associated_type_bounds stabilized in Rust 1.79. https://github.com/rust-lang/rust/pull/122055 --- tests/run-pass/associated_type_bounds.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/run-pass/associated_type_bounds.rs b/tests/run-pass/associated_type_bounds.rs index 2c70afe..c7da5a6 100644 --- a/tests/run-pass/associated_type_bounds.rs +++ b/tests/run-pass/associated_type_bounds.rs @@ -1,8 +1,9 @@ // SPDX-License-Identifier: Apache-2.0 OR MIT -#![feature(associated_type_bounds)] #![allow(dead_code)] +// TODO: move to tests/test.rs once Rust 1.79 become stable. + // https://github.com/rust-lang/rust/blob/1.70.0/tests/ui/associated-type-bounds/fn-where.rs pub mod fn_where { use easy_ext::ext;