Skip to content

fix typo in error message #4921

New issue

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

Merged
merged 1 commit into from
Aug 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion compiler/src/dotty/tools/dotc/typer/Applications.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ object Applications {

/** Does `tp` fit the "get match" conditions as an unapply result type?
* This is the case of `tp` has a `get` member as well as a
* parameterless `isDefined` member of result type `Boolean`.
* parameterless `isEmpty` member of result type `Boolean`.
*/
def isGetMatch(tp: Type, errorPos: Position = NoPosition)(implicit ctx: Context) =
extractorMemberType(tp, nme.isEmpty, errorPos).isRef(defn.BooleanClass) &&
Expand Down Expand Up @@ -95,6 +95,7 @@ object Applications {
val addendum =
if (ctx.scala2Mode && unapplyName == nme.unapplySeq)
"\nYou might want to try to rewrite the extractor to use `unapply` instead."
else ""
ctx.error(em"$unapplyResult is not a valid result type of an $unapplyName method of an extractor$addendum", pos)
Nil
}
Expand Down