Skip to content

Commit f79523e

Browse files
committed
Fix CI
1 parent e74bd94 commit f79523e

File tree

6 files changed

+2
-10
lines changed

6 files changed

+2
-10
lines changed

compiler/test/dotty/tools/dotc/CompilationTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class CompilationTests extends ParallelTesting {
146146
compileFilesInDir("tests/neg", defaultOptions) +
147147
compileFilesInDir("tests/neg-tailcall", defaultOptions) +
148148
compileFilesInDir("tests/neg-kind-polymorphism", defaultOptions and "-Ykind-polymorphism") +
149-
compileDir("tests/neg-custom-args/deprecation", defaultOptions.and("-Xfatal-warnings", "-deprecation")) +
149+
compileFilesInDir("tests/neg-custom-args/deprecation", defaultOptions.and("-Xfatal-warnings", "-deprecation")) +
150150
compileFilesInDir("tests/neg-custom-args/fatal-warnings", defaultOptions.and("-Xfatal-warnings")) +
151151
compileFilesInDir("tests/neg-custom-args/allow-double-bindings", allowDoubleBindings) +
152152
compileDir("tests/neg-custom-args/impl-conv", defaultOptions.and("-Xfatal-warnings", "-feature")) +

tests/neg-custom-args/deprecation/A_1.scala

Lines changed: 0 additions & 5 deletions
This file was deleted.

tests/neg-custom-args/deprecation/B_2.scala

Lines changed: 0 additions & 3 deletions
This file was deleted.

tests/neg-custom-args/fatal-warnings/structural.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ object Test {
6767
package p6 {
6868

6969
class Refinements {
70-
val y: { val x: T; type T } // error: deprecated warning: illegal forward reference in refinement; now illegal
70+
val y: { val x: T; type T } // illegal forward reference in refinement; now illegal
7171
}
7272

7373
}

0 commit comments

Comments
 (0)