From ae1f9008a4b8b4e12d4580e25f240d9ee352e6a4 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 22 Jul 2021 08:28:11 +0200 Subject: [PATCH] comment out line that doesn't compile --- examples/resource.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/resource.rs b/examples/resource.rs index 693ce89618..dca0b37034 100644 --- a/examples/resource.rs +++ b/examples/resource.rs @@ -61,7 +61,7 @@ mod app { let local_to_uart0 = cx.local.local_to_uart0; // error: no `local_to_uart1` field in `uart0::LocalResources` - cx.local.local_to_uart1 += 1; + // cx.local.local_to_uart1 += 1; hprintln!("UART0: local_to_uart0 = {}", local_to_uart0).unwrap(); }