summaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr194314/test/Main.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs154/pr194314/test/Main.java')
-rwxr-xr-xtests/bugs154/pr194314/test/Main.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs154/pr194314/test/Main.java b/tests/bugs154/pr194314/test/Main.java
new file mode 100755
index 000000000..d1e699369
--- /dev/null
+++ b/tests/bugs154/pr194314/test/Main.java
@@ -0,0 +1,9 @@
+package test;
+
+public class Main {
+
+ public static void main(String[] args) throws Exception {
+ IService service = new Service();
+ service.method(42L);
+ }
+}