ca86dbee72
Fixes #KT-15150
13 lines
415 B
Kotlin
Vendored
13 lines
415 B
Kotlin
Vendored
// "Add Android View constructors using '@JvmOverloads'" "true"
|
|
// ERROR: The type has a constructor, and thus must be initialized here
|
|
|
|
package android.view
|
|
|
|
import android.util.AttributeSet
|
|
import android.content.Context
|
|
|
|
public open class View {
|
|
constructor(context: Context)
|
|
constructor(context: Context, attrs: AttributeSet?)
|
|
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int)
|
|
} |