[JS TESTS] Disable mangler checker in tests

This commit is contained in:
Roman Artemev
2021-05-26 17:03:42 +03:00
committed by TeamCityServer
parent a8d0e60328
commit 09d30c91bf
7 changed files with 7 additions and 0 deletions
@@ -1,4 +1,5 @@
// KT-4423 Enum with function not compiled
// SKIP_MANGLE_VERIFICATION
enum class Sign(val str: String, val func: (x: Int, y: Int) -> Int){
plus("+", { x, y -> x + y }),