Files
kotlin-fork/idea/testData/android/quickfix/viewConstructor/simple.before.Dependency1.kt
T
2017-01-26 00:56:33 +03:00

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)
}