diff options
author | 2019-02-12 15:08:46 +0100 | |
---|---|---|
committer | 2019-02-12 15:08:46 +0100 | |
commit | 89c922079eaefc748febdb62aeccfff598a07c69 (patch) | |
tree | eebd97bd85976b5aa962353e2a48590e57557447 /tests/cfail/init-output.rs | |
parent | 88599780e0eba38d9e543b7809f586479f6956bd (diff) | |
download | rtic-89c922079eaefc748febdb62aeccfff598a07c69.tar.gz rtic-89c922079eaefc748febdb62aeccfff598a07c69.tar.zst rtic-89c922079eaefc748febdb62aeccfff598a07c69.zip |
update examples and tests
Diffstat (limited to 'tests/cfail/init-output.rs')
-rw-r--r-- | tests/cfail/init-output.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cfail/init-output.rs b/tests/cfail/init-output.rs index 1200aca7..414a35a8 100644 --- a/tests/cfail/init-output.rs +++ b/tests/cfail/init-output.rs @@ -11,7 +11,7 @@ use rtfm::app; const APP: () = { #[init] fn init() -> u32 { - //~^ ERROR `init` must have type signature `[unsafe] fn()` + //~^ ERROR `init` must have type signature `[unsafe] fn() [-> init::LateResources]` 0 } }; |