diff options
author | aclement <aclement> | 2006-07-31 14:11:49 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-07-31 14:11:49 +0000 |
commit | 832480f7290084fcbd63d9ab70c6eab5b7a8cf2c (patch) | |
tree | c15088ba8905186a16e9950d82d78a0484913345 /tests | |
parent | f1f468907e99cf8fcc0ec9a3dedd467a4f78e1f3 (diff) | |
download | aspectj-832480f7290084fcbd63d9ab70c6eab5b7a8cf2c.tar.gz aspectj-832480f7290084fcbd63d9ab70c6eab5b7a8cf2c.zip |
testcode 152257
Diffstat (limited to 'tests')
-rw-r--r-- | tests/multiIncremental/PR152257/inc1/Main.java | 13 |
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 |