• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * @sample sample
3  */
anull4 fun a(): String {
5     return "Hello, Work"
6 }
7 
bnull8 fun b(): String {
9     return "Hello, Rest"
10 }
11 
samplenull12 fun sample() {
13     assertPrints(a(), "Hello, Work")
14     assertTrue(a() == b())
15 }