aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/i1605.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-11-11 14:54:54 +0100
committerMartin Odersky <odersky@gmail.com>2016-11-11 14:54:54 +0100
commit49022717bc0e8c0de8834f4cde5021e1da8c0ea0 (patch)
treecf04aedffe1f4d81bd73af2d1ea0ef34eb22c76d /tests/neg/i1605.scala
parent987c5905b1024aa9e62ac72aee2d1d6f63cb2110 (diff)
downloaddotty-49022717bc0e8c0de8834f4cde5021e1da8c0ea0.tar.gz
dotty-49022717bc0e8c0de8834f4cde5021e1da8c0ea0.tar.bz2
dotty-49022717bc0e8c0de8834f4cde5021e1da8c0ea0.zip
Make test more robust
Pick a less common name for the missing identifier. Depending on my classpath I sometimes got `x is not a package` as an additional error for this one.
Diffstat (limited to 'tests/neg/i1605.scala')
-rw-r--r--tests/neg/i1605.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/neg/i1605.scala b/tests/neg/i1605.scala
index 776f2df47..f5fd9f29b 100644
--- a/tests/neg/i1605.scala
+++ b/tests/neg/i1605.scala
@@ -1,5 +1,5 @@
object Test {
def foo = inlineMe
- inline def inlineMe = 1 + x // error
+ inline def inlineMe = 1 + x2233 // error
}