-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Labels
bugpriorityUrgent or high-priority issues (blockers for an upcoming release, needed hotfixes, etc.)Urgent or high-priority issues (blockers for an upcoming release, needed hotfixes, etc.)
Description
if you run the following code, it correctly prints 6
but if you run it with --trace, it prints 11
from console import Console
service test {
embed Console as Console
main {
i = 0
a[i++] << {
a = "a"
b = "b"
}
a[i++] << {
a = "a"
b = "b"
}
a[i++] << {
a = "a"
b = "b"
}
a[i++] << {
a = "a"
b = "b"
}
a[i++] << {
a = "a"
b = "b"
}
a[i++] << {
a = "a"
b = "b"
}
println@Console( #a )()
}
}
Metadata
Metadata
Labels
bugpriorityUrgent or high-priority issues (blockers for an upcoming release, needed hotfixes, etc.)Urgent or high-priority issues (blockers for an upcoming release, needed hotfixes, etc.)