summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2015-11-14 09:18:57 -0500
committerSeth Tisue <seth@tisue.net>2015-11-14 09:18:57 -0500
commitc7040b6ac445e2fc33118fce5cea910b4bdcc731 (patch)
tree8b0e59334aac0e15ab32b0b075765a1faa39d246 /src/compiler
parent7a75c0ff03f7d8fa36f886b4de61696c20828672 (diff)
parent167f79ca1ee300860a4dfc570a03590496764f88 (diff)
downloadscala-c7040b6ac445e2fc33118fce5cea910b4bdcc731.tar.gz
scala-c7040b6ac445e2fc33118fce5cea910b4bdcc731.tar.bz2
scala-c7040b6ac445e2fc33118fce5cea910b4bdcc731.zip
Merge pull request #4839 from SethTisue/reword-dependent-type-error
less confusing wording for a dependent method type error
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/ContextErrors.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/ContextErrors.scala b/src/compiler/scala/tools/nsc/typechecker/ContextErrors.scala
index b0bd9977a8..727f09290a 100644
--- a/src/compiler/scala/tools/nsc/typechecker/ContextErrors.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/ContextErrors.scala
@@ -1190,7 +1190,7 @@ trait ContextErrors {
def IllegalDependentMethTpeError(sym: Symbol)(context: Context) = {
val errorAddendum =
- ": parameter appears in the type of another parameter in the same section or an earlier one"
+ ": parameter may only be referenced in a subsequent parameter section"
issueSymbolTypeError(sym, "illegal dependent method type" + errorAddendum)(context)
}