(String f)
| 16 | public OutputStream os; |
| 17 | |
| 18 | @ExpectWarning("OBL_UNSATISFIED_OBLIGATION,OS_OPEN_STREAM") |
| 19 | int simpleObviousBug(String f) throws IOException { |
| 20 | FileInputStream in = new FileInputStream(f); |
| 21 | return in.read(); |
| 22 | } |
| 23 | |
| 24 | |
| 25 | public static void main(String[] argv) throws Exception { |