()
| 453 | #[ignore] |
| 454 | #[test] |
| 455 | fn parse_continue() { |
| 456 | insta::assert_snapshot!(parse_to_tree( |
| 457 | "for { let i := 0 } lt(i, 10) { i := add(i, 1)} |
| 458 | { |
| 459 | if lt(i,3){ |
| 460 | continue |
| 461 | } |
| 462 | " |
| 463 | )); |
| 464 | } |
| 465 | |
| 466 | #[test] |
| 467 | fn parse_function_def_with_return() { |
nothing calls this directly
no outgoing calls
no test coverage detected