Files
kotlin-fork/idea/testData/inspections/incompatibleAPI/constructors.kt
T
Nikolay Krasko 3ef67e1d9d Inspection for highlighting problem API usage
It's planned to use this inspection for show patchset branches problems
during development process.
2018-05-17 12:27:29 +03:00

8 lines
162 B
Kotlin
Vendored

package problem.api.kotlin.constructors
import lib.LibConstructor
fun ktOverloads(lib: LibMethods) {
LibConstructor(null, "some")
LibConstructor(null)
}