Create From Usage: Fix StackOverflowException on recursive type parameter bounds

#EA-69240 Fixed
This commit is contained in:
Alexey Sedunov
2015-08-18 15:57:32 +03:00
parent 69218e2647
commit d18a9f6d8a
8 changed files with 78 additions and 14 deletions
@@ -0,0 +1,6 @@
// "Create parameter 'foo'" "true"
class Cyclic<E : Cyclic<E>>
fun test(foo: Cyclic<*>) {
val c : Cyclic<*> = foo
}