blob: 7f6066bc0066a2c22344b5b365469f6d459bdc27 [file] [log] [blame]
package com.android.tools.r8.rewrite.assertions.kotlinassertionhandlersimple
fun simpleAssertion() {
assert(false) { "simpleAssertion" }
}
fun multipleAssertions() {
assert(false) { "multipleAssertions 1" }
assert(false) { "multipleAssertions 2" }
}
fun main() {
simpleAssertion();
multipleAssertions();
}