Not marking entry points as unused.

This commit is contained in:
Evgeny Gerashchenko
2014-12-03 22:24:44 +03:00
parent b781a09caf
commit 8297411e5f
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,5 @@
// WITH_RUNTIME
open class A: java.applet.Applet()
class B: A()
@@ -0,0 +1,5 @@
object EntryPoint {
fun main(args: Array<String>) {
}
}