Results 4 issues of mikkka

We can define timeout on entire Fetch after run with cats effect, but I can't find how to define timeout on 'sub' Fetch and handle it with 'default' value. Something...

### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how...

### Is your feature request related to a problem? Please describe. if I have big project and do refactoring, for example type moving this ends in infinite compilation turns in...

After adding following code to example(cvs.scala, object Main) I've got java.lang.StackOverflowError ```scala sealed trait Tree[A] case class Branch[A](left: Tree[A], right: Tree[A]) extends Tree[A] case class Leaf[A](value: A) extends Tree[A] val...