summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/scaladoc/scala/html/HtmlFactoryTest.scala42
1 files changed, 21 insertions, 21 deletions
diff --git a/test/scaladoc/scala/html/HtmlFactoryTest.scala b/test/scaladoc/scala/html/HtmlFactoryTest.scala
index e2687dd510..d3b3b64359 100644
--- a/test/scaladoc/scala/html/HtmlFactoryTest.scala
+++ b/test/scaladoc/scala/html/HtmlFactoryTest.scala
@@ -290,27 +290,27 @@ object Test extends Properties("HtmlFactory") {
case _ => false
}
}
-
- property("Trac #484 - refinements and existentials") = {
- val files = createTemplates("Trac484.scala")
- val lines = """
- |type Bar = AnyRef { type Dingus <: T forSome { type T <: String } }
- |type Foo = AnyRef { ... /* 3 definitions in type refinement */ }
- |def g(x: T forSome { type T <: String }): String
- |def h(x: Float): AnyRef { def quux(x: Int,y: Int): Int }
- |def hh(x: Float): AnyRef { def quux(x: Int,y: Int): Int }
- |def j(x: Int): Bar
- |def k(): AnyRef { type Dingus <: T forSome { type T <: String } }
- """.stripMargin.trim.lines map (_.trim)
-
- files("RefinementAndExistentials.html") match {
- case node: scala.xml.Node => {
- val s = node.text.replaceAll("\\s+", " ")
- lines forall (s contains _)
- }
- case _ => false
- }
- }
+ //
+ // property("Trac #484 - refinements and existentials") = {
+ // val files = createTemplates("Trac484.scala")
+ // val lines = """
+ // |type Bar = AnyRef { type Dingus <: T forSome { type T <: String } }
+ // |type Foo = AnyRef { ... /* 3 definitions in type refinement */ }
+ // |def g(x: T forSome { type T <: String }): String
+ // |def h(x: Float): AnyRef { def quux(x: Int,y: Int): Int }
+ // |def hh(x: Float): AnyRef { def quux(x: Int,y: Int): Int }
+ // |def j(x: Int): Bar
+ // |def k(): AnyRef { type Dingus <: T forSome { type T <: String } }
+ // """.stripMargin.trim.lines map (_.trim)
+ //
+ // files("RefinementAndExistentials.html") match {
+ // case node: scala.xml.Node => {
+ // val s = node.text.replaceAll("\\s+", " ")
+ // lines forall (s contains _)
+ // }
+ // case _ => false
+ // }
+ // }
property("Trac #4289") = {
val files = createTemplates("Trac4289.scala")