We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb545b9 commit ac8a339Copy full SHA for ac8a339
core/src/main/scala/cats/mtl/Handle.scala
@@ -225,7 +225,7 @@ object Handle extends HandleInstances with HandleVariant {
225
def allowF[F[_], E]: AdHocSyntaxTired[F, E] =
226
new AdHocSyntaxTired[F, E]
227
228
- final class AdHocSyntaxTired[F[_], E] {
+ final class AdHocSyntaxTired[F[_], E](private val unit: Unit) extends AnyVal {
229
230
def apply[A](body: Handle[F, E] => F[A])(implicit F: ApplicativeThrow[F]): Inner[A] =
231
new Inner(body)
0 commit comments