replace 'trait' keyword with 'interface' in library code

This commit is contained in:
Dmitry Jemerov
2015-05-12 12:09:27 +02:00
parent b1c4a5670a
commit 2a99f757c4
42 changed files with 195 additions and 195 deletions
@@ -4,7 +4,7 @@ import org.junit.Test as test
import kotlin.test.*
import kotlin.properties.*
trait WithBox {
interface WithBox {
fun box(): String
}