summaryrefslogtreecommitdiff
path: root/test/files/neg/t8291.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-10-05 10:26:02 +1000
committerJason Zaugg <jzaugg@gmail.com>2014-10-05 10:28:13 +1000
commita87db212098a5e69176652c93284f425bb7e1b09 (patch)
tree1fd1cbf43b17f085c3760a04ac6ecb5d221fcafd /test/files/neg/t8291.scala
parent7b2c3cb8bb0f5f96f3182f551eb82cb1c59d460c (diff)
downloadscala-a87db212098a5e69176652c93284f425bb7e1b09.tar.gz
scala-a87db212098a5e69176652c93284f425bb7e1b09.tar.bz2
scala-a87db212098a5e69176652c93284f425bb7e1b09.zip
SI-8291 Fix implicitNotFound message with type aliases
This pattern of code is typically a bug: if (f(tp.typeSymbol)) { g(tp.typeArgs) } Intead, one needs to take the base type of `tp` wrt `tp.typeSymbol`. This commit does exactly that when formatting the `@implicitNotFound` custom error message. Patch found on the back of an envelope in the handwriting of @adriaanm
Diffstat (limited to 'test/files/neg/t8291.scala')
-rw-r--r--test/files/neg/t8291.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/neg/t8291.scala b/test/files/neg/t8291.scala
new file mode 100644
index 0000000000..b344586a56
--- /dev/null
+++ b/test/files/neg/t8291.scala
@@ -0,0 +1,7 @@
+@scala.annotation.implicitNotFound("Could not find implicit for ${T} or ${U}") trait X[T, U]
+
+object Test {
+ type Z[U] = X[Int, U]
+ implicitly[X[Int, String]]
+ implicitly[Z[String]]
+}