aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg-with-implicits/t5376.scala
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2014-03-20 10:59:03 +0100
committerodersky <odersky@gmail.com>2014-03-20 10:59:03 +0100
commite23b5a25baf491672fd2f0cee8e6fb5dc7b5a5ca (patch)
tree1d3a66fc0f5f839a561a2987159cb5b841b89257 /tests/untried/neg-with-implicits/t5376.scala
parent1dfe6567fee9626106211088e41c4683342ec0f8 (diff)
parentd51d08b444e0ea4a2c13b4daf0ce14b53bfbad89 (diff)
downloaddotty-e23b5a25baf491672fd2f0cee8e6fb5dc7b5a5ca.tar.gz
dotty-e23b5a25baf491672fd2f0cee8e6fb5dc7b5a5ca.tar.bz2
dotty-e23b5a25baf491672fd2f0cee8e6fb5dc7b5a5ca.zip
Merge pull request #84 from samuelgruetter/srewrite-tests-1
Explicit types for implicits in tests/untried
Diffstat (limited to 'tests/untried/neg-with-implicits/t5376.scala')
-rw-r--r--tests/untried/neg-with-implicits/t5376.scala24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/untried/neg-with-implicits/t5376.scala b/tests/untried/neg-with-implicits/t5376.scala
new file mode 100644
index 000000000..9dcaccbf1
--- /dev/null
+++ b/tests/untried/neg-with-implicits/t5376.scala
@@ -0,0 +1,24 @@
+object Test {
+ object O1 { implicit def f(s: String): Int = 1 }
+ object O2 { implicit def f(s: String): Int = 2 }
+ object O3 { def f(s: String): Int = 3 }
+
+ // Import two implicits with the same name in the same scope.
+ def m1 = {
+ import O1._
+ import O2._
+
+ // Implicit usage compiles.
+ "a": Int
+ }
+
+ // Import one implict and one non-implicit method with the
+ // same name in the same scope.
+ def m2 = {
+ import O1._
+ import O3._
+
+ // Implicit usage compiles.
+ "a": Int
+ }
+}