Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
alwaysNullWithJava.kt
blob: a8961244433752ad97ee9216b5a4bfb4b3211854 [
file
]
// FIR_IDENTICAL
// FILE: My.java
public
class
My
{
static
public
My
create
()
{
return
new
My
();
}
public
void
foo
()
{}
}
// FILE: Test.kt
fun test
()
{
val
my
=
My
.
create
()
if
(
my
==
null
)
{
my
<!
UNSAFE_CALL
!>.<!>
foo
()
}
}