// "Add non-null asserted (!!) call" "true" class Foo { val project: Project? = null fun quux() { baz(project) } fun baz(project: Project) {} class Project }