We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14cc28f commit 859bb52Copy full SHA for 859bb52
compiler/test/dotty/tools/repl/DocTests.scala
@@ -30,7 +30,7 @@ class DocTests extends ReplTest {
30
eval("/** doc */ trait Foo").andThen { implicit s =>
31
assertEquals("doc", doc("new Foo"))
32
}
33
-
+/*
34
@Test def docOfExtension1 =
35
eval("/** doc */ extension (x: Int) def foo = 0").andThen { implicit s =>
36
assertEquals("doc", doc("extension_foo"))
@@ -47,7 +47,7 @@ class DocTests extends ReplTest {
47
assertEquals("doc2", doc("extension_bar"))
48
assertEquals("doc0", doc("extension_baz"))
49
50
+*/
51
@Test def docOfDefInObject =
52
eval("object O { /** doc */ def foo = 0 }").andThen { implicit s =>
53
assertEquals("doc", doc("O.foo"))
0 commit comments