New J2K: handle null Java type
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
public class A {
|
||||
void foo() {
|
||||
Object x = true ? null : null;
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class A {
|
||||
fun foo() {
|
||||
val x: Any? = if (true) null else null
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user