aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2016-09-04 19:32:13 +0300
committerGitHub <noreply@github.com>2016-09-04 19:32:13 +0300
commita0e7adb070ee9c73c0cca081196198296cbd63ab (patch)
tree955c80e27562ed452f92226f534ead57089db812 /tests/pending
parent1650add0d7c1f3108fcacd15bb989ebd42234888 (diff)
parent2dfe4db8b3babefeba83eb30ffdc92a5d84665bb (diff)
downloaddotty-a0e7adb070ee9c73c0cca081196198296cbd63ab.tar.gz
dotty-a0e7adb070ee9c73c0cca081196198296cbd63ab.tar.bz2
dotty-a0e7adb070ee9c73c0cca081196198296cbd63ab.zip
Merge pull request #1482 from dotty-staging/fix-asapplicable-safe
More tweaks to type inference
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())
-}