9434e4bee9
#KT-7314 Fixed
12 lines
230 B
Java
Vendored
12 lines
230 B
Java
Vendored
class WithoutPrimary {
|
|
public static A test1() {
|
|
return new A("123", "abc");
|
|
}
|
|
public static A test3() {
|
|
return new A("123", 456);
|
|
}
|
|
public static A test4() {
|
|
return new A(1.0);
|
|
}
|
|
}
|