Can be parameter inspection #KT-10819 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-04-06 14:37:53 +03:00
parent 8ace253559
commit 1d83a1a97c
18 changed files with 388 additions and 5 deletions
@@ -0,0 +1,9 @@
package user;
class User {
public static void main(String[] args) {
UsedFromJava used = new UsedFromJava(1, 2);
System.out.println(used.getZ());
System.out.println(used.getW());
}
}