diff options
Diffstat (limited to 'tests/bugs154/pr194314/test/Main.java')
-rwxr-xr-x | tests/bugs154/pr194314/test/Main.java | 9 |
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);
+ }
+}
|