We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
val color: Parser[String] = literal("blue") | literal("green") val select: Parser[String] = literal("fg") | literal("bg") val setColor: Parser[(String, Char, String)] = select ~ ' ' ~ color
error: type mismatch; found : sbt.internal.util.complete.Parser[((String, Char), String)] required: sbt.internal.util.complete.Parser[(String, Char, String)] val setColor: Parser[(String, Char, String)] = select ~ ' ' ~ color
Parser of type that described in the documentation.
sbt 1.2.8, 1.6.2 scala 2.12.10
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
steps
problem
expectation
Parser of type that described in the documentation.
notes
sbt 1.2.8, 1.6.2
scala 2.12.10
The text was updated successfully, but these errors were encountered: