]> source.dussan.org Git - aspectj.git/commitdiff
Fix to stop leaving 'foo' files around in the top of tests after running the suite.
authorjhugunin <jhugunin>
Fri, 23 Jan 2004 20:38:34 +0000 (20:38 +0000)
committerjhugunin <jhugunin>
Fri, 23 Jan 2004 20:38:34 +0000 (20:38 +0000)
tests/new/MissingTypeInDeclareParents.java

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