Is it possible to access a superclass property spe...
# announcements
s
Is it possible to access a superclass property specifically?
Copy code
override val players: List<BMonopolyPlayer> get() = Collections.unmodifiableList(players)
The preceding code should create some circular error i assume because it's referring to the
players
as the overridden value according to IntelliJ