]> source.dussan.org Git - aspectj.git/commitdiff
fixed strange dependence on a file named foo
authorjhugunin <jhugunin>
Wed, 8 Jan 2003 01:18:02 +0000 (01:18 +0000)
committerjhugunin <jhugunin>
Wed, 8 Jan 2003 01:18:02 +0000 (01:18 +0000)
tests/new/MissingTypeInDeclareParents.java

index ad969a65bdc304865d0babd41810d29699b490de..a2fd4f61992f7cdb20afe147e5d85f69c11bf783 100644 (file)
@@ -7,8 +7,8 @@ import java.io.*;
 public class MissingTypeInDeclareParents {
 
     public static void main(String[] args) throws Exception {
-        FileReader fr = new FileReader("foo");
-        //fr.run();
+        FileWriter fr = new FileWriter("foo");
+        fr.close();
         Tester.check(true, "Kilroy was here");
     }
 }
@@ -16,6 +16,6 @@ public class MissingTypeInDeclareParents {
 class C {
 }
 aspect A {
-    /** Xlint warning expected where FileReader is outside code controlled by implementation */
-    declare parents : FileReader extends Runnable; // CW 20 Xlint warning 
+    /** Xlint warning expected where FileWriter is outside code controlled by implementation */
+    declare parents : FileWriter extends Runnable; // CW 20 Xlint warning 
 }