aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-08-26 16:43:30 +0200
committerMartin Odersky <odersky@gmail.com>2016-08-26 17:57:09 +0200
commita438d3e4cb39ea7c12eba2ebc3a2399a680549f6 (patch)
treec544f839c61f046e4dba76679a9902fb42d3a570 /tests/pending
parent36648547105bc8ac53dd63a03821a27243af13cd (diff)
downloaddotty-a438d3e4cb39ea7c12eba2ebc3a2399a680549f6.tar.gz
dotty-a438d3e4cb39ea7c12eba2ebc3a2399a680549f6.tar.bz2
dotty-a438d3e4cb39ea7c12eba2ebc3a2399a680549f6.zip
Handle case where expected type of a SeqLiteral has an undetermined element type.
Test case is isApplicableSafe -Ycheck:first.
Diffstat (limited to 'tests/pending')
-rw-r--r--tests/pending/pos/isApplicableSafe.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/pending/pos/isApplicableSafe.scala b/tests/pending/pos/isApplicableSafe.scala
deleted file mode 100644
index b4cacbf28..000000000
--- a/tests/pending/pos/isApplicableSafe.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-class A {
- // Any of Array[List[Symbol]], List[Array[Symbol]], or List[List[Symbol]] compile.
- var xs: Array[Array[Symbol]] = _
- var ys: Array[Map[Symbol, Set[Symbol]]] = _
-
- xs = Array(Array())
- ys = Array(Map(), Map())
-}