From: aclement Date: Mon, 31 Jul 2006 14:11:49 +0000 (+0000) Subject: testcode 152257 X-Git-Tag: pre_pr_153572~36 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=832480f7290084fcbd63d9ab70c6eab5b7a8cf2c;p=aspectj.git testcode 152257 --- diff --git a/tests/multiIncremental/PR152257/inc1/Main.java b/tests/multiIncremental/PR152257/inc1/Main.java new file mode 100644 index 000000000..5eecaea64 --- /dev/null +++ b/tests/multiIncremental/PR152257/inc1/Main.java @@ -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