[JS IR BE] Don't transform toString with extension receiver

This commit is contained in:
Svyatoslav Kuzmich
2019-05-19 20:05:53 +03:00
parent 3153a7dd7e
commit e9ceee388e
4 changed files with 26 additions and 10 deletions
@@ -0,0 +1,9 @@
// EXPECTED_REACHABLE_NODES: 1281
package foo
class A
fun A?.toString() = "OK"
fun box() = (null as A?).toString()