fix: issue with tuple clause
It was not consuming the next case if there was no condition being checked in the clause. Now it properly always consumes the next clause unless last clause.
This commit is contained in:
@@ -1,15 +1,13 @@
|
||||
use other.{FFF, GGG}
|
||||
|
||||
test thing1() {
|
||||
let x =
|
||||
other.FFF
|
||||
let x = other.FFF
|
||||
|
||||
x == FFF
|
||||
}
|
||||
|
||||
test thing2() {
|
||||
let x =
|
||||
other.GGG(2)
|
||||
let x = other.GGG(2)
|
||||
|
||||
x == GGG(2)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user