blob: 6fc69105c3e98852c5c6b326054d18e3875378f6 [file] [log] [blame]
import java.io.IOException;
class Test {
/**
* @throws IOException in some case
* <warning>@throws</warning> IOException
*/
void a() throws IOException{
throw new IOException();
}
}