Skip to content

Instantly share code, notes, and snippets.

@erokhins
Created July 16, 2013 14:00
Show Gist options
  • Save erokhins/6008961 to your computer and use it in GitHub Desktop.
Save erokhins/6008961 to your computer and use it in GitHub Desktop.
trait A {
private fun foo()
fun bar() {
foo()
}
}
class B: A {}
fun main(args: Array<String>) {
B().bar()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment