Fix tests: "Placing function type parameters after the function name" error
This commit is contained in:
Vendored
+1
-1
@@ -4,6 +4,6 @@ class A<T>(val n: T) {
|
||||
|
||||
}
|
||||
|
||||
fun test<U>(u: U) {
|
||||
fun <U> test(u: U) {
|
||||
val a = A(u).<caret>Foo(u)
|
||||
}
|
||||
Reference in New Issue
Block a user