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,6 @@
package test;
// It's not possible to inherit from Season (it's sealed in Kotlin)
public class Derived extends Season {
}