aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164
diff options
context:
space:
mode:
authoraclement <aclement>2009-01-27 02:41:20 +0000
committeraclement <aclement>2009-01-27 02:41:20 +0000
commit671bafd7b5e584d96a44d4f35059ec9046c1a4f7 (patch)
tree245581b95987b3b8514dac255665914f361cdd28 /tests/bugs164
parent01eb395e6ef8f8b403d2c37b36ef717ff82d158a (diff)
downloadaspectj-671bafd7b5e584d96a44d4f35059ec9046c1a4f7.tar.gz
aspectj-671bafd7b5e584d96a44d4f35059ec9046c1a4f7.zip
246393: new compiler build
Diffstat (limited to 'tests/bugs164')
-rw-r--r--tests/bugs164/pr246393/D.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs164/pr246393/D.java b/tests/bugs164/pr246393/D.java
new file mode 100644
index 000000000..1b2e09975
--- /dev/null
+++ b/tests/bugs164/pr246393/D.java
@@ -0,0 +1,12 @@
+import java.io.*;
+package snippet;
+
+public class D {
+ public static String readContent(InputStream is) {
+ try {
+ } catch (IOException ioe) {
+ ioe.printStackTrace();
+ }
+ }
+}
+