blob: 383f6d8a484cb2f3c11e3ca7b81638d2300cc71b [file] [log] [blame]
import java.io.File;
import java.io.IOException;
class Test{
void foo() throws IOException {
File f = <warning descr="Forbid File.createTempFile">File.createTempFile("", "")</warning>;
}
}