``` textViewLogin = findViewById(R.id.button_login...
# android
a
Copy code
textViewLogin = findViewById(R.id.button_login)
textViewLogin.setOnClickListener {
    // No error.
}

textViewLogin = findViewById<TextView>(R.id.button_login).setOnClickListener { 
    /*
      Type mismatch
      Require: View
      Found: Unit
      */
}