Converter:

Functions are final by default in plugin mode
This commit is contained in:
Pavel V. Talanov
2013-11-19 16:52:57 +04:00
parent bf4e27b152
commit d98d8cfa7f
88 changed files with 168 additions and 162 deletions
+2 -2
View File
@@ -10,9 +10,9 @@ var myContainer : Container = Container()
class IntContainer(i : Int) {
}
class Test() {
open fun putInt(i : Int) {
fun putInt(i : Int) {
}
open fun test() {
fun test() {
putInt(One.myContainer.myInt)
IntContainer(One.myContainer.myInt)
}