KT-11952 J2K: Assertion failed in PropertyDetectionCache.get on conversion of access to Java constant of anonymous type

#KT-11952 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-05-05 11:03:42 +03:00
parent de02b56354
commit bdd425c1a0
7 changed files with 40 additions and 0 deletions
@@ -0,0 +1,8 @@
package test;
import java.util.HashSet;
import java.util.Set;
public interface Bar {
Set<String> SET = new HashSet<String>() { };
}