null
例:
fun greeting(user: String): String? = "Hello, $user!"
クイックフィックス適用後:
fun greeting(user: String): String = "Hello, $user!"