• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 open class Foo {
firstnull2     fun first() {
3     }
4 
5     val firstProp: Int = 0
6 }
7 
8 class Bar : Foo() {
secondnull9     fun second()
10 
11     val secondProp: Int = 1
12 }
13