1 /* 2 * Copyright 2016-2022 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 import kotlinx.coroutines.test.* 6 import kotlin.test.* 7 8 class SampleTest { 9 @Test <lambda>null10 fun test() = runTest { 11 doWorld() 12 } 13 } 14