Searched refs:WithDefault (Results 1 – 2 of 2) sorted by relevance
58 internal class WithDefault(message: String = "default") : Exception(message) class in kotlinx.coroutines.exceptions.StackTraceRecoveryCustomExceptionsTest64 throw WithDefault("custom") in <lambda>()67 } catch (e: WithDefault) { in <lambda>()70 assertTrue(cause is WithDefault) in <lambda>()
43 ClassReader reader = new ClassReader(WithDefault.class.getName()); in testDefaultMethodFails()100 interface WithDefault<T> { interface in Java7CompatibilityTest108 interface ExtendsDefault<T extends Number> extends WithDefault<T> {