From 20e4bde660fe206feacc7e6335344d8acc4eeaf6 Mon Sep 17 00:00:00 2001 From: shmuelr Date: Wed, 13 Apr 2022 07:14:44 -0400 Subject: [PATCH] Add missing package statement to test file (#3249) --- .../concurrent/test/LimitedParallelismConcurrentTest.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kotlinx-coroutines-core/concurrent/test/LimitedParallelismConcurrentTest.kt b/kotlinx-coroutines-core/concurrent/test/LimitedParallelismConcurrentTest.kt index 964f678e74..8d38f05b4b 100644 --- a/kotlinx-coroutines-core/concurrent/test/LimitedParallelismConcurrentTest.kt +++ b/kotlinx-coroutines-core/concurrent/test/LimitedParallelismConcurrentTest.kt @@ -2,6 +2,8 @@ * Copyright 2016-2022 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. */ +package kotlinx.coroutines + import kotlinx.atomicfu.* import kotlinx.coroutines.* import kotlinx.coroutines.exceptions.*