blob: 5cddc99dd7514b0dc62a99e5156cbf6e9ccd517d [file] [log] [blame]
// EXTRACTION_TARGET: property with initializer
class A {
private val i = 1 + 2
fun foo(a: Int = i) {
}
}