aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-12-20 12:17:14 +0100
committerMartin Odersky <odersky@gmail.com>2015-12-20 12:17:45 +0100
commit581fee04f808d6f7759f98358e7475e6a58138e3 (patch)
tree0b487714c63b3b3532aff4863b865c8e411db0d6 /tests
parentf780a371a3716c6917a510ed72a5927704634bb3 (diff)
downloaddotty-581fee04f808d6f7759f98358e7475e6a58138e3.tar.gz
dotty-581fee04f808d6f7759f98358e7475e6a58138e3.tar.bz2
dotty-581fee04f808d6f7759f98358e7475e6a58138e3.zip
Fix problem dealing with symbolic import renames
Diffstat (limited to 'tests')
-rw-r--r--tests/pos/seq-ordering.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pos/seq-ordering.scala b/tests/pos/seq-ordering.scala
new file mode 100644
index 000000000..517d8ae8a
--- /dev/null
+++ b/tests/pos/seq-ordering.scala
@@ -0,0 +1,9 @@
+import Ordering.Implicits._
+
+class A {
+ import Predef.{ implicitly => ? }
+
+ ?[Ordering[List[Int]]]
+ ?[Ordering[IndexedSeq[(Int, String)]]]
+ ?[Ordering[Seq[Seq[Int]]]]
+}