Intention for removing explicit type arguments at function calls

This commit is contained in:
Tal Man
2014-03-28 23:21:20 -04:00
parent 4a60c59f39
commit b9e248b006
35 changed files with 379 additions and 2 deletions
@@ -0,0 +1,3 @@
fun foo() {
val x = <spot>X("x")</spot>
}
@@ -0,0 +1,3 @@
fun foo() {
val x = <spot>X<String>("x")</spot>
}
@@ -0,0 +1,5 @@
<html>
<body>
This intention removes type arguments from function calls when they can be implicitly inferred
</body>
</html>