Intention for adding explicit type arguments at function calls
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user