Files
kotlin-fork/idea/testData/inspections/incompatibleAPI/lib/LibConstructor.java
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

10 lines
159 B
Java
Vendored

package lib;
public class LibConstructor {
public LibConstructor(Object object) {
}
public LibConstructor(Object object, String other) {
}
}