JS backend: testFiles -> testData
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package foo
|
||||
|
||||
fun box(): Boolean {
|
||||
return !(A(false).wrap()) and A(true).wrap()
|
||||
}
|
||||
|
||||
class A(val a: Boolean) {
|
||||
inline fun myInlineMethod(): Boolean {
|
||||
return a
|
||||
}
|
||||
|
||||
fun wrap() = myInlineMethod()
|
||||
}
|
||||
Reference in New Issue
Block a user