summaryrefslogtreecommitdiff
path: root/test/files/pos/t6335.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-09-09 13:49:43 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-09-09 13:53:09 +0200
commitb43b3b0ba8ac55ea9c1727b8a4c5e9ad5696fe6d (patch)
treecc74433ef691a5f81af10b099464fc8efb022746 /test/files/pos/t6335.scala
parentadf2d3632b07eef4fc2303aef994e66584a73f49 (diff)
downloadscala-b43b3b0ba8ac55ea9c1727b8a4c5e9ad5696fe6d.tar.gz
scala-b43b3b0ba8ac55ea9c1727b8a4c5e9ad5696fe6d.tar.bz2
scala-b43b3b0ba8ac55ea9c1727b8a4c5e9ad5696fe6d.zip
SI-6335 More precise location of the implicit class synthetic method.
One approach would be to disallow an implicit class in a template that already has a member with the same name. But this commit doesn't do this; instead it uses `isSynthetic` to find the synthesized implicit conversion method from the potentially overloaded alternatives.
Diffstat (limited to 'test/files/pos/t6335.scala')
-rw-r--r--test/files/pos/t6335.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/t6335.scala b/test/files/pos/t6335.scala
new file mode 100644
index 0000000000..a39c4f27f5
--- /dev/null
+++ b/test/files/pos/t6335.scala
@@ -0,0 +1,11 @@
+object E {
+ def X = 3
+ implicit class X(val i: Int) {
+ def xx = i
+ }
+}
+
+object Test {
+ import E._
+ 0.xx
+}