We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e6b360 commit d2ea644Copy full SHA for d2ea644
macros/tests/ui/recursion.rs
@@ -0,0 +1,13 @@
1
+#![no_main]
2
+
3
+use msp430_rt_macros::{entry, interrupt};
4
5
+#[entry]
6
+fn main(cs: CriticalSection) -> ! {
7
+ main(cs)
8
+}
9
10
+#[interrupt]
11
+fn DefaultHandler(cs: CriticalSection) -> ! {
12
+ DefaultHandler(cs)
13
macros/tests/ui/recursion2.rs
+ main()
+ DefaultHandler()
0 commit comments