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
+4 -4
View File
@@ -1,15 +1,15 @@
package demo
open class Container() {
class Container() {
var myInt : Int = 1
}
open class One() {
class One() {
class object {
var myContainer : Container = Container()
}
}
open class IntContainer(i : Int) {
class IntContainer(i : Int) {
}
open class Test() {
class Test() {
open fun putInt(i : Int) {
}
open fun test() {