• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package p
2 
3 class Some
4 
topLevelFunnull5 fun topLevelFun() {}
6 
7 val topLevelVal = ""
8 
9 const val topLevelConst = ""
10 
11 val topLevelGetVal get() = ""
12 
13 val Some.topLevelExtVal get() = ""
14 
Somenull15 fun Some.topLevelExtFun() {}