aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-10-31 13:09:17 +0100
committerGitHub <noreply@github.com>2016-10-31 13:09:17 +0100
commit9f3005c1b742b6d05e94a93ad9ac31b02f951008 (patch)
treebcadbabcda83733fe11c42f7addd7f8ba234b4a8 /src/dotty/tools/dotc/reporting/diagnostic/messages.scala
parent167a885edb76eecc1d8582489b1fbb085a3ba799 (diff)
parentba7f0112ea5174ba2a70c2b6d9f1744508183c78 (diff)
downloaddotty-9f3005c1b742b6d05e94a93ad9ac31b02f951008.tar.gz
dotty-9f3005c1b742b6d05e94a93ad9ac31b02f951008.tar.bz2
dotty-9f3005c1b742b6d05e94a93ad9ac31b02f951008.zip
Merge pull request #1630 from m-sp/master
Add error message Parsers.scala:1620 missing type keyword
Diffstat (limited to 'src/dotty/tools/dotc/reporting/diagnostic/messages.scala')
-rw-r--r--src/dotty/tools/dotc/reporting/diagnostic/messages.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
index 2913f4f4c..67d53fd22 100644
--- a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
+++ b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
@@ -677,5 +677,18 @@ object messages {
|
|$fixedVarInAlternative""".stripMargin
}
+ }
+
+ case class TypeParamsTypeExpected(mods: Modifiers, identifier: TermName)(implicit ctx: Context) extends Message(24) {
+ val kind = "Syntax"
+
+ val msg = hl"""Expected ${"type"} keyword for type parameter $identifier"""
+
+ val explanation = hl"""|This happens when you add modifiers like ${"private"} or ${"protected"}
+ |to your type parameter definition without adding the ${"type"} keyword.
+ |
+ |Add ${"type"} to your code, e.g.:
+ |${s"trait A[${mods.flags} type $identifier]"}
+ |""".stripMargin
}
}