Notices where this attachment appears
-
Embed this notice
@taylan exactly
something is definitely wrong here.
and if it were "filesystem issues" i shouldn't be able to mess around with files via other means.
java.io.File is pretty fundamental.
-
Embed this notice
figured out where my bootstrapping-ant problem is
# cat HangTest.java
import java.io.File;
import java.io.IOException;
class HangTest {
public static void main(String[] args) {
System.out.println("it should hang here:");
try {
File result = File.createTempFile("pre","suf");
}
catch (IOException ioe) { /** not gonna happen */ }
System.out.println("did it?");
}
}
#javac HangTest.java
(some warnings here)
#java HangTest
what should the output be?