testdata for IDEA-158047

This commit is contained in:
Anna Kozlova
2017-05-10 20:32:41 +03:00
parent 728ed62ed0
commit d31ca80cac
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import java.util.Collections;
import java.util.List;
class MyTest {
public MyTest(String s, List<String> l, String s2) {
}
public MyTest(String s, int i) {
}
{
new MyTest("", <error descr="Incompatible types. Required int but 'emptyList' was inferred to List<T>:
no instance(s) of type variable(s) T exist so that List<T> conforms to Integer">Collections.emptyList()</error>);
}
}