BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / parser / wsa / for_or-1.boo
blobaf3d8aad9c3c6465b8049f16d4dee96f6b5f0fbf
1 """
2 for item in []:
3 pass
4 or:
5 return 1
6 """
7 for item in []:
8 pass
9 or:
10 return 1
11 end