Introduce -Xprogressive

This commit is contained in:
Dmitry Savvinov
2018-03-29 13:17:09 +03:00
parent 2e9bf49921
commit e8181c0473
12 changed files with 103 additions and 11 deletions
@@ -0,0 +1,5 @@
interface WithCopy<T> {
fun copy(str: T): WithCopy<T>
}
data class Test(val str: String): WithCopy<String>