fun test1() {
  val hello: Runnable = local fun <anonymous>() {
    println(message = "Hello, world!")
  }
 /*-> Runnable */
  hello.run()
}
