here is my button object
button
let loginRegisterButton:UIButton = { let button = UIButton(type: .system) button.backgroundColor = UIColor
Instead of
let loginRegisterButton:UIButton = { //... }()
Try:
lazy var loginRegisterButton:UIButton = { //... }()
That should fix the compile error!!!