diff options
Diffstat (limited to 'tests/bugs154/pr194314/test/IService.java')
-rwxr-xr-x | tests/bugs154/pr194314/test/IService.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs154/pr194314/test/IService.java b/tests/bugs154/pr194314/test/IService.java new file mode 100755 index 000000000..0c9bb7757 --- /dev/null +++ b/tests/bugs154/pr194314/test/IService.java @@ -0,0 +1,6 @@ +package test;
+
+
+public interface IService {
+ void method(long l) throws Exception;
+}
|