Sealed classes: extra java against kotlin tests, together with an implementation of Java diagnostics inside these tests

This commit is contained in:
Mikhail Glukhikh
2015-06-18 19:44:36 +03:00
parent 6e2395471d
commit 4d895a4c31
13 changed files with 99 additions and 7 deletions
@@ -0,0 +1,8 @@
package test;
public class Instance {
// It is not possible to create Season instance (it's sealed in Kotlin)
static Season create() {
return new Season();
}
}