aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t6608.scala
blob: 3671e2892b4d1e2fb182a1fc56dabd7b26ceff25 (plain) (tree)
1
2
3
4
5
6
7
8






                               
                                             







                                            
import reflect.runtime.universe

class C {
  private val yyy: Any = 1
  @inline def foo = yyy
}

object Test extends dotty.runtime.LegacyApp {
  import universe._
  val access = typeOf[C].decls
    .toList
    .filter(_.name.toString.endsWith("yyy"))
    .map(x => (x.name, x.isPrivate))
  println(access.head)
}