Skip to content

Commit 3eff831

Browse files
authored
Merge pull request #3379 from Duhemm/fix/repro-steps
Fix reproduction steps for `JointCompilationSource`
2 parents dbe71d6 + 29785cf commit 3eff831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/test/dotty/tools/vulpix/ParallelTesting.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ trait ParallelTesting extends RunnerOrchestration { self =>
9898
}
9999

100100
self match {
101-
case JointCompilationSource(_, files, _, _) => {
102-
files.map(_.getAbsolutePath).foreach { path =>
101+
case source: JointCompilationSource => {
102+
source.sourceFiles.map(_.getAbsolutePath).foreach { path =>
103103
sb.append("\\\n ")
104104
sb.append(path)
105105
sb += ' '

0 commit comments

Comments
 (0)