8857827dce
#KT-34894 Fixed
12 lines
195 B
Kotlin
Vendored
12 lines
195 B
Kotlin
Vendored
// "Add non-null asserted (!!) call" "true"
|
|
class Foo {
|
|
val project: Project? = null
|
|
|
|
fun quux() {
|
|
baz(<caret>project)
|
|
}
|
|
|
|
fun baz(project: Project) {}
|
|
|
|
class Project
|
|
} |