quickfix to migrate function type parameter lists to new syntax
This commit is contained in:
@@ -60,3 +60,6 @@ class C {
|
||||
|
||||
fun bar() = ::foo
|
||||
}
|
||||
|
||||
fun typed<T>() {
|
||||
}
|
||||
|
||||
@@ -59,3 +59,6 @@ class C {
|
||||
|
||||
fun bar() = C::foo
|
||||
}
|
||||
|
||||
fun <T> typed() {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
// "Migrate type parameter list syntax" "true"
|
||||
fun f<caret><T>() {}
|
||||
@@ -0,0 +1,2 @@
|
||||
// "Migrate type parameter list syntax" "true"
|
||||
fun <T> f() {}
|
||||
Reference in New Issue
Block a user