fix type parameter migration for extension functions

This commit is contained in:
Dmitry Jemerov
2015-10-12 13:19:32 +02:00
parent 045df48588
commit 23e13d4043
5 changed files with 18 additions and 1 deletions
@@ -0,0 +1,5 @@
// "Migrate type parameter list syntax" "true"
class Foo
fun Foo.f<caret><T>() {}
@@ -0,0 +1,5 @@
// "Migrate type parameter list syntax" "true"
class Foo
fun <T> Foo.f() {}