Skip to content

Instantly share code, notes, and snippets.

@arsalankhan994
Created February 12, 2022 13:09
Show Gist options
  • Select an option

  • Save arsalankhan994/f2c33d00ffaad718d2c46f426d8099c6 to your computer and use it in GitHub Desktop.

Select an option

Save arsalankhan994/f2c33d00ffaad718d2c46f426d8099c6 to your computer and use it in GitHub Desktop.
/*
Using open keyword to inherit this class
*/
open class InheritableClass {
}
/*
Try to Inherit inheritable class
*/
class InheritInheritableClass : InheritableClass() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment