aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t2591.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t2591.scala')
-rw-r--r--tests/pending/pos/t2591.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/pending/pos/t2591.scala b/tests/pending/pos/t2591.scala
new file mode 100644
index 000000000..47ae551bf
--- /dev/null
+++ b/tests/pending/pos/t2591.scala
@@ -0,0 +1,15 @@
+class A
+class B
+
+object Implicits {
+ implicit def imp(x: A): Int = 41
+ implicit def imp(x: B): Int = 41
+}
+
+object Test {
+ // should cause imp to be in scope so that the next expression type checks
+ // `import Implicits._` works
+ import Implicits.imp
+
+ (new A) : Int
+}