typst/tests/typ/code/break-continue.typ

15 lines
215 B
XML

// Test break and continue in loops.
// Ref: false
---
#for i in range(10) {
if i > 5 {
// Error: 5-10 break is not yet implemented
break
}
}
---
// Error: 1-10 unexpected keyword `continue`
#continue