summaryrefslogtreecommitdiff
path: root/test/files/neg/t8291.check
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.check
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.check')
-rw-r--r--test/files/neg/t8291.check7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/neg/t8291.check b/test/files/neg/t8291.check
new file mode 100644
index 0000000000..c9972e5575
--- /dev/null
+++ b/test/files/neg/t8291.check
@@ -0,0 +1,7 @@
+t8291.scala:5: error: Could not find implicit for Int or String
+ implicitly[X[Int, String]]
+ ^
+t8291.scala:6: error: Could not find implicit for Int or String
+ implicitly[Z[String]]
+ ^
+two errors found