Skip to content

Instantly share code, notes, and snippets.

@saturov
Created April 18, 2016 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saturov/fc1eb1aec6e705797ef9b6aeff37a214 to your computer and use it in GitHub Desktop.
Save saturov/fc1eb1aec6e705797ef9b6aeff37a214 to your computer and use it in GitHub Desktop.
open class Base {
open fun f() {}
}
abstract class Derived : Base() {
override abstract fun f()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment