// DISABLE-ERRORS // WITH_RUNTIME // IS_APPLICABLE: false class FooException : Exception() class BarException : Exception() @Throws(exceptionClasses = listOf(BarException::class)) fun test() { throw FooException() }