blob: 54c93ec257bdeac9e85c86119b090f9f17ee7827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
if true {
if true {
# Spurious comma
if anyof(true,true,true,) {
}
}
}
if true {
if anyof(true,true) {
# Spurious comma
if anyof(true,true,true,) {
if anyof(true,true,true) {
}
}
}
}
|