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,7 @@
// KT-7892 Parameter with default value in enum's constructor breaks Java compilation
package test;
public class DefaultArgumentInEnumConstructor {
static K entry = K.ENTRY;
}