Boris Yartsev [1:08 PM]
Hello! I’m playing with tornadofx.
I got the config for table view - in this case everything is ok
column(”BUILDING", Room::building)
column("ROOM", Room::name)
But when i try to do something like that -
column(”BUILDING", Room::building.name)
column("ROOM", Room::name)
I get type inference failed. Not enough information to infer parameter T. Why can’t kotlin infer that the parameter is String?