/* Mango compiler (mangolang.org) | Apache 2.0 license, © 2018. */
package org.mangolang.jit
import kotlin.test.Test
import kotlin.test.assertTrue
// This exists because the build fails when there are no tests; replace it with real tests when there is code to test!
class PlaceholderTest {
@Test
fun testSanityCheck() {
assertTrue(1 == 1)
}
}