blob: f61d2abd0bb8f30b82afaa0121b6162ea5a9a9f5 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.experimental.internal
/**
* Closeable entity.
* @suppress **Deprecated**
*/
@Deprecated("No replacement, see specific use")
public actual interface Closeable {
public actual fun close()
}