From fbb9eb5f832dad8cb063d411bf29ea1111a55953 Mon Sep 17 00:00:00 2001 From: Jonathan Pallant Date: Mon, 14 Apr 2025 09:22:53 +0100 Subject: [PATCH] Latest rust has changed its error output --- cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs b/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs index 6a1dd6e8..70eee1a1 100644 --- a/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs +++ b/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs @@ -11,5 +11,5 @@ fn foo() -> ! { loop {} } -#[interrupt] //~ ERROR failed to resolve: use of undeclared crate or module `interrupt` +#[interrupt] //~ ERROR failed to resolve: use of unresolved module or unlinked crate `interrupt` fn USART1() {}