Fix tests: "Placing function type parameters after the function name" error
This commit is contained in:
Vendored
+1
-1
@@ -1,7 +1,7 @@
|
||||
// "Create parameter 'foo'" "true"
|
||||
|
||||
class A<T> {
|
||||
fun test<T>(n: Int, foo: T) {
|
||||
fun <T> test(n: Int, foo: T) {
|
||||
val t: T = foo
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user