From 72d12aabf35f699ef103d79f29f8f7b21286d94c Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Fri, 26 Nov 2010 23:53:26 +0000 Subject: Some work on error messages, somewhat based on ... Some work on error messages, somewhat based on ideas in #3092. No review. --- test/files/neg/predef-masking.scala | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/files/neg/predef-masking.scala (limited to 'test/files/neg/predef-masking.scala') diff --git a/test/files/neg/predef-masking.scala b/test/files/neg/predef-masking.scala new file mode 100644 index 0000000000..67b69aa169 --- /dev/null +++ b/test/files/neg/predef-masking.scala @@ -0,0 +1,21 @@ +// Testing predef masking +import Predef.{ any2stringadd => _, _ } + +object StringPlusConfusion { + // Would love to do something about this error message, but by the + // time we get our hands on it the context is lost. + def f[T](x: T) = x + 5 + + // After we block out any2stringadd, the error is: + // + // work/a.scala:7: error: value + is not a member of type parameter T + // def f[T](x: T) = x + 5 + // ^ + // Normally, it is: + // + // work/a.scala:7: error: type mismatch; + // found : Int(5) + // required: String + // def f[T](x: T) = x + 5 + // ^ +} -- cgit v1.2.3