Converter:

Classes are final by default in plugin mode
This commit is contained in:
Pavel V. Talanov
2013-11-19 15:21:20 +04:00
parent 354daa91bb
commit bf4e27b152
113 changed files with 181 additions and 179 deletions
@@ -1,9 +1,9 @@
open class B(i : Int) {
class B(i : Int) {
open fun call() : Int {
return 1
}
}
open class A() : B(10) {
class A() : B(10) {
override fun call() : Int {
return super.call()
}