blob: 9d06ef2a73c93846903da52cf87b77d3da7b59b4 [file]
// FIR_IDENTICAL
// ISSUE: KT-13451
// FILE: J.java
public class J {
}
// FILE: Main.kt
class K {
fun f() {}
}
fun test (j: J, k: K) {
j == K::f
j == k::f
j === K::f
j === k::f
when (j) {
k::f -> ""
K::f -> ""
}
}