]> source.dussan.org Git - aspectj.git/commitdiff
testcode 152257
authoraclement <aclement>
Mon, 31 Jul 2006 14:11:49 +0000 (14:11 +0000)
committeraclement <aclement>
Mon, 31 Jul 2006 14:11:49 +0000 (14:11 +0000)
tests/multiIncremental/PR152257/inc1/Main.java [new file with mode: 0644]

diff --git a/tests/multiIncremental/PR152257/inc1/Main.java b/tests/multiIncremental/PR152257/inc1/Main.java
new file mode 100644 (file)
index 0000000..5eecaea
--- /dev/null
@@ -0,0 +1,13 @@
+package test;
+
+import java.io.IOException;
+
+public class Main {
+        public void testMethod() throws IOException {
+                methodThatThrows();
+        }
+        public static void methodThatThrows() throws IOException {
+                System.out.println("Inside method that may throw an IOException");
+        }
+}
\ No newline at end of file