aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr194314/test/Main.java
blob: d1e699369fb06afc7de78265c9c2be7c34fe600b (plain)
1
2
3
4
5
6
7
8
9
package test;

public class Main {

    public static void main(String[] args) throws Exception {
        IService service = new Service();
        service.method(42L);
    }
}