Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
nullability
/
MethodInvokedWithNullArg.kt
blob: a4bdcb960bc32cf291f53810b45ade439a8cf97e [
file
] [
log
] [
blame
]
internal
class
C
{
private
fun foo
(
s
:
String
?)
{}
fun bar
()
{
foo
(
null
)
}
}