From 2af3e4430a8c546d5273e0bac669fd6696431e89 Mon Sep 17 00:00:00 2001 From: Qi Date: Fri, 19 Sep 2025 22:11:21 +0800 Subject: [PATCH] ci: update macros_type_mismatch for Rust 1.90.0 (#7630) Signed-off-by: ADD-SP --- tests-build/tests/fail/macros_type_mismatch.stderr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests-build/tests/fail/macros_type_mismatch.stderr b/tests-build/tests/fail/macros_type_mismatch.stderr index f9c32f005..c20dae302 100644 --- a/tests-build/tests/fail/macros_type_mismatch.stderr +++ b/tests-build/tests/fail/macros_type_mismatch.stderr @@ -25,7 +25,7 @@ error[E0308]: mismatched types found enum `Result<(), _>` help: a return type might be missing here | -9 | async fn missing_return_type() -> _ { + 9 | async fn missing_return_type() -> _ { | ++++ help: consider using `Result::expect` to unwrap the `Result<(), _>` value, panicking if the value is a `Result::Err` |