We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ba547f commit d40e715Copy full SHA for d40e715
compiler/test/dotty/tools/dotc/reporting/CodeActionTest.scala
@@ -136,20 +136,6 @@ class CodeActionTest extends DottyTest:
136
afterPhase = "patternMatcher"
137
)
138
139
- @Test def removeUnusedPrivateMemberBlock =
140
- checkCodeAction(
141
- code = """object Test:
142
- | private def foo: String = {
143
- | println("hello")
144
- | "456"
145
- | }
146
- |""".stripMargin,
147
- title = "Remove unused code",
148
- expected = """object Test:
149
- |""".stripMargin ,
150
- afterPhase = "checkUnusedPostInlining"
151
- )
152
-
153
// Make sure we're not using the default reporter, which is the ConsoleReporter,
154
// meaning they will get reported in the test run and that's it.
155
private def newContext =
0 commit comments