Test for KT-3331 RuntimeException in frontend-java at TypeVariableResolverFromTypeDescriptors.getTypeVariable()

#KT-3331 obsolete
This commit is contained in:
Evgeny Gerashchenko
2013-05-21 13:14:28 +04:00
parent 5fc7c885bb
commit 12485c0ef5
3 changed files with 27 additions and 0 deletions
@@ -0,0 +1,10 @@
package test
public trait A<T> {
fun bar(): T
fun foo(): T = bar()
}
public class B : A<String> {
override fun bar() = ""
}