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 7e9a652 commit 0e46820Copy full SHA for 0e46820
compiler/test/dotty/tools/io/ZipArchiveTest.scala
@@ -82,7 +82,9 @@ class ZipArchiveTest {
82
}
83
finally {
84
archive.close()
85
- Files.delete(jar)
+ // The following results in IOException on Windows (file in use by another process).
86
+ // As jar is a temp file, it will be deleted automatically.
87
+ // Files.delete(jar)
88
89
90
0 commit comments