I'm trying to define a type member to be a singleton type. Here is my attempt:
import shapeless.syntax.singleton._
trait Test{
type Blocked <: Boolean
}
def f(t: Test{ type Blocked = false.narrow }) = ??? // does not compile
def f(t: Test{ type Blocked = false }) = ??? // argument is parsed as t: Test{ type Blocked = Boolean }
Is there a way to set a type member to a singleton type (Boolean(false)
in my case)?
Blocked
becomes literal singleton typefalse
; note howf(true)
is rejected bellow