summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2015-09-21 13:28:09 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2015-09-21 13:28:09 +0200
commit27aada2d6128d7e06dc3c8bb2f836a000f958d55 (patch)
tree0dd4d4aebcf7438a1b8c137a1af9ad3a7e96d5b0 /test
parenta170c999e900dc9b94d8f1ddaa08be80e779102f (diff)
parent19b95504732dcb4699e403134e2c752dfb045c02 (diff)
downloadscala-27aada2d6128d7e06dc3c8bb2f836a000f958d55.tar.gz
scala-27aada2d6128d7e06dc3c8bb2f836a000f958d55.tar.bz2
scala-27aada2d6128d7e06dc3c8bb2f836a000f958d55.zip
Merge pull request #4752 from alexeyr/topic/errornonexistentfield-message
[backport] Include owner in ErrorNonExistentField message
Diffstat (limited to 'test')
-rw-r--r--test/files/run/reflection-fieldmirror-ctorparam.check6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/reflection-fieldmirror-ctorparam.check b/test/files/run/reflection-fieldmirror-ctorparam.check
index e391e7ccfe..c66be94ed7 100644
--- a/test/files/run/reflection-fieldmirror-ctorparam.check
+++ b/test/files/run/reflection-fieldmirror-ctorparam.check
@@ -1,3 +1,3 @@
-class scala.ScalaReflectionException: Scala field x isn't represented as a Java field, neither it has a Java accessor method
-note that private parameters of class constructors don't get mapped onto fields and/or accessors,
-unless they are used outside of their declaring constructors.
+class scala.ScalaReflectionException: Scala field x of class A isn't represented as a Java field, nor does it have a
+Java accessor method. One common reason for this is that it may be a private class parameter
+not used outside the primary constructor.