summaryrefslogtreecommitdiff
path: root/test/scaladoc
diff options
context:
space:
mode:
Diffstat (limited to 'test/scaladoc')
-rw-r--r--test/scaladoc/run/t7767.scala2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/scaladoc/run/t7767.scala b/test/scaladoc/run/t7767.scala
index be5e9fe080..6c9ceb511d 100644
--- a/test/scaladoc/run/t7767.scala
+++ b/test/scaladoc/run/t7767.scala
@@ -3,7 +3,6 @@ import scala.tools.partest.ScaladocModelTest
object Test extends ScaladocModelTest {
- // This caused an infinite recursion in method inline() in CommentFactory.scala
override def code = """
class Docable extends { /**Doc*/ val foo = 0 } with AnyRef
"""
@@ -13,7 +12,6 @@ object Test extends ScaladocModelTest {
def testModel(rootPackage: Package) = {
import access._
- // if it doesn't hang, the test is passed
val comment = rootPackage._class("Docable")._value("foo").comment.map(_.body.toString.trim).getOrElse("")
assert(comment.contains("Doc"), comment)
}