• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 open class Foo<T> {
2 }
3 
4 class Bar : Foo<Char>() {
5 }
6 
Foonull7 fun Foo<Int>.shazam() {
8 }
9 
Barnull10 fun Bar.xyzzy() {
11 }
12