blob: 9e160b5ecd7af2de3694ecba46c04d58aa0ee794 [file]
// DECLARATION_TYPE: org.jetbrains.kotlin.psi.KtProperty
class FooBar {
val p: String
constructor(p: String) {
this.p = p
}
fun doSmth() {}
}