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.
given
given does not work with literal types
given s: "literal" = "literal" // compile error
an identifier expected, but string literal found given s: "literal" = "literal"
Should compiles.
implicit val s: "literal" = "literal" // compiles
works fine.