Fix tests: "Placing function type parameters after the function name" error
This commit is contained in:
@@ -14,13 +14,13 @@ fun pullLog(): String {
|
||||
return string
|
||||
}
|
||||
|
||||
fun fizz<T>(x: T): T {
|
||||
fun <T> fizz(x: T): T {
|
||||
log("fizz($x)")
|
||||
return x
|
||||
}
|
||||
|
||||
inline
|
||||
fun buzz<T>(x: T): T {
|
||||
fun <T> buzz(x: T): T {
|
||||
log("buzz($x)")
|
||||
return x
|
||||
}
|
||||
Reference in New Issue
Block a user