Alex

Results 45 comments of Alex

On latest snapshot I'm getting this most of the time (arbitrary in question varies from every run): ``` Test com.github.simy4.coregex.jqwik.JqwikTest.arbitraryTest failed: net.jqwik.api.CannotFindArbitraryException: Cannot find an Arbitrary for Parameter of type...

@jlink I reproduced it on this project: https://github.com/SimY4/coregex Steps to reproduce: - remove `Test / parallelExecution := false` from jqwik project - run the build pipeline or for the faster...

Fixing the version of spring-beans dependency to 5.1.6.RELEASE fixes this issue for me but surfaces more issues... ``` org.springframework spring-beans 5.1.6.RELEASE ```

@som-snytt @Gedochao I'm having a hard time extracting it into a self contained project. I'll need to figure out what is it in my project that triggers it. I'll come...

@som-snytt So even smaller example is this one: ```scala case class CC(a: String, b: String) extends Iterable[String] { override def iterator: Iterator[String] = Iterator(a, b) } trait T { extension...