summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2006-07-31 14:11:49 +0000
committeraclement <aclement>2006-07-31 14:11:49 +0000
commit832480f7290084fcbd63d9ab70c6eab5b7a8cf2c (patch)
treec15088ba8905186a16e9950d82d78a0484913345 /tests
parentf1f468907e99cf8fcc0ec9a3dedd467a4f78e1f3 (diff)
downloadaspectj-832480f7290084fcbd63d9ab70c6eab5b7a8cf2c.tar.gz
aspectj-832480f7290084fcbd63d9ab70c6eab5b7a8cf2c.zip
testcode 152257
Diffstat (limited to 'tests')
-rw-r--r--tests/multiIncremental/PR152257/inc1/Main.java13
1 files changed, 13 insertions, 0 deletions
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