[Wasm] Major compiler and stdlib update

This commit is contained in:
Svyatoslav Kuzmich
2020-04-27 14:39:20 +03:00
parent 3be38d1796
commit bfd0f21e9d
196 changed files with 12635 additions and 4774 deletions
@@ -0,0 +1,9 @@
class C(val x: String)
fun <T1 : C, T2 : T1> foo(x: T2): String =
x.x
fun box(): String {
return foo(C("OK"))
}