Don't make generated methods of local data classes LOCAL

This commit is contained in:
Andrey Breslav
2015-01-27 19:34:35 +03:00
parent eebe013de2
commit 9c469a7dff
37 changed files with 45 additions and 45 deletions
@@ -2,10 +2,10 @@ package test
kotlin.data() internal final class DataClass {
/*primary*/ public constructor DataClass()
internal final /*synthesized*/ fun copy(): test.DataClass
public final /*synthesized*/ fun copy(): test.DataClass
}
kotlin.data() internal final class OtherDataClass {
/*primary*/ public constructor OtherDataClass()
internal final /*synthesized*/ fun copy(): test.OtherDataClass
public final /*synthesized*/ fun copy(): test.OtherDataClass
}