01: package org.netbeans.test.java.hints;
02:
03: import java.io.FileReader;
04:
05: public class TestBug123850e extends Fire8 implements Fire7 {
06: public void run() {
07: new FileReader("foo");
08: }
09: }
10:
11: interface Fire7 {
12: public void run() throws java.io.IOException;
13: }
14:
15: abstract class Fire8 {
16: public abstract void run() throws java.io.FileNotFoundException;
17: }
|