Intention for adding explicit type arguments at function calls

This commit is contained in:
Tal Man
2014-03-28 23:18:26 -04:00
committed by Andrey Breslav
parent f8db722011
commit cfc16b410e
38 changed files with 388 additions and 1 deletions
@@ -0,0 +1,5 @@
fun foo() {
<spot>bar<String>("x")</spot>
}
fun bar<T>(t: T) : T = t
@@ -0,0 +1,5 @@
fun foo() {
<spot>bar("x")</spot>
}
fun bar<T>(t: T) : T = t
@@ -0,0 +1,5 @@
<html>
<body>
This intention inserts explicit type arguments to function calls
</body>
</html>