Closed ivanbarlog closed 5 days ago
When using v.any() with combination of v.forward() I get following error:
v.any()
v.forward()
Type instantiation is excessively deep and possibly infinite.
When v.any() is changed for instance to v.record(v.string(), v.string()) the error dissapears.
v.record(v.string(), v.string())
Here is the playground link which reproduces this bug.
Fixed in v1.0.0-beta.7 😎
When using
v.any()
with combination ofv.forward()
I get following error:When
v.any()
is changed for instance tov.record(v.string(), v.string())
the error dissapears.Here is the playground link which reproduces this bug.