Thilo Schuchort
Thilo Schuchort
In my activity I have a module that depends on the activity itself. How would I mock this with DaggerMock? I have tried instantiating it in the test like I...
In this small PR I want to fix a few of the issues we've had with the queries.sql file. Specifically, I've removed the timestamp from the log, relativized all paths...
Adds some additional matchers like `not`, or `leq`. I couldn't be bothered to write tests because the code is so incredibly simple.
I'm currently trying to create a Servant API including a streaming endpoint with a server implemented using MTL + Conduit . An API type with a streaming endpoint looks like...
Closes #379
## Compiler version 3.3.3 ## Minimized code ```Scala // file Main.scala package com.foo class A opaque type Opaque = A inline def myMacro = ${ myMacroImpl } def myMacroImpl(using q:...
## Compiler version 3.3.3 ## Minimized code ```Scala opaque type Opaque = Int transparent inline def op: Opaque = 123 object Main { def main(args: Array[String]): Unit = { val...
## Compiler version 3.3.3 ## Minimized code ```Scala object Foo { opaque type Opaque[T] = Option[T] def newOpaque[T]: Opaque[T] = Option.empty[T] given [T]: TypeTest[Any, Opaque[T]] with { override def unapply(x:...
It seems to me that record4s does not work correctly neither in inline nor transparent inline functions (the difference is important since they are inlined at different times iirc). Probably...
## Compiler version 3.3.3 ## Minimized code ```Scala case class Foo() extension (self: Foo) { inline def matchCustom[R](inline matchExpr: Foo => R): R = ${matchCustomImpl[R]('self, 'matchExpr)} } private def matchCustomImpl[R:...