Join Slack
Powered by
``` abstract class Foo { abstract val x: Any } cla...
# android
s
sargunv
07/11/2016, 11:50 PM
Copy code
abstract class Foo { abstract val x: Any } class Bar : Foo() { override val x: Any = Any() }
Open in Slack
Previous
Next