Do not generate annotations of method parameters on its $default synthetic method

#KT-7892 Fixed
This commit is contained in:
Alexander Udalov
2015-06-01 11:57:41 +03:00
parent 4f77b44ac3
commit 28addcf8e7
6 changed files with 73 additions and 35 deletions
@@ -0,0 +1,5 @@
package test
enum class K(private val default: String = "default") {
ENTRY()
}