Fix invalid signature for generic UL method

Fixed #KT-38348
This commit is contained in:
Igor Yakovlev
2020-04-17 15:48:46 +03:00
parent 6f40ad7de2
commit ed3ae785fb
13 changed files with 85 additions and 58 deletions
@@ -0,0 +1,3 @@
class FooImpl : Foo {
override fun <T : Any?> baz(foo: T) = Unit
}