summaryrefslogtreecommitdiff
path: root/test/files/pos/lub-from-hell.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-08-11 17:17:38 +1000
committerAdriaan Moors <adriaan.moors@typesafe.com>2016-08-23 15:51:52 -0700
commit10aa78db5961284e0f4fb2fcb5a1f3bd7c357385 (patch)
tree925ca61e554816955470f42e3f34a47fc567b0f3 /test/files/pos/lub-from-hell.scala
parentc12dd768b6ec5db1ee5f9c811129332c8fcec2a6 (diff)
downloadscala-10aa78db5961284e0f4fb2fcb5a1f3bd7c357385.tar.gz
scala-10aa78db5961284e0f4fb2fcb5a1f3bd7c357385.tar.bz2
scala-10aa78db5961284e0f4fb2fcb5a1f3bd7c357385.zip
Address review comments
- clarify the intent of tests - Consolidate stripExistentialsAndTypeVars with similar logic in mergePrefixAndArgs - Refactor special cases in maybeRewrap The name isn't great, but I'm struggling to come up with a pithy way to describe the rogue band of types.
Diffstat (limited to 'test/files/pos/lub-from-hell.scala')
-rw-r--r--test/files/pos/lub-from-hell.scala9
1 files changed, 2 insertions, 7 deletions
diff --git a/test/files/pos/lub-from-hell.scala b/test/files/pos/lub-from-hell.scala
index a7d2a99b08..cb4b1733c7 100644
--- a/test/files/pos/lub-from-hell.scala
+++ b/test/files/pos/lub-from-hell.scala
@@ -1,11 +1,6 @@
class Test {
trait Tree
def foo(b: Boolean, buf: collection.mutable.ArrayBuffer[Any], acc: StringBuilder) = if (b) buf else acc
-
- // def bar(b: Boolean,
- // buf: scala.collection.IndexedSeqLike[Any,Cloneable with Mutable with Equals],
- // acc: scala.collection.IndexedSeqLike[_18,scala.collection.mutable.IndexedSeq[_18]] with scala.collection.IndexedSeqLike[_18,IndexedSeq[_18]] forSome { type _18 >: String with Char }
- // ) = if (b) buf else acc
-
-
}
+// This test case minimizes a case that failed to compile due to a bug in my work on
+// SI-5294. After refining my patches, it compiles again, as expected. \ No newline at end of file