class A { val list = listOf(1, 2, 3) } fun foo(a: A) { for (x in a.list/** kdoc **/) { println(x) } } /* a.list */