resolve references from @param to type parameters of functions

#KT-12001 Fixed
This commit is contained in:
Dmitry Jemerov
2016-04-28 12:03:30 +02:00
parent 97c3c633a7
commit c967cc8a23
6 changed files with 36 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
/**
* @param T this is a type parameter
*/
fun <<caret>T> f(s: String) { }
+4
View File
@@ -0,0 +1,4 @@
/**
* @param R this is a type parameter
*/
fun <<caret>R> f(s: String) { }