summaryrefslogtreecommitdiff
path: root/test/files/run/t4794.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4794.scala')
-rw-r--r--test/files/run/t4794.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/t4794.scala b/test/files/run/t4794.scala
index afe89fa429..720906f507 100644
--- a/test/files/run/t4794.scala
+++ b/test/files/run/t4794.scala
@@ -7,6 +7,7 @@ class Arr[@specialized A](val arr: Array[A]) {
object Test {
def main(args: Array[String]): Unit = {
- println(classOf[Arr[_]].getMethods filter (_.getName contains "quux") size) // expect 10, not 1
+ def quuxae = classOf[Arr[_]].getMethods filter (_.getName contains "quux")
+ println(quuxae.size) // expect 10, not 1
}
}