Merged LoadCompiledKotlin test int LoadJavaTest.

This commit is contained in:
Evgeny Gerashchenko
2013-12-06 16:48:03 +04:00
parent 62f44f7ed0
commit b7cfd676bf
491 changed files with 2032 additions and 2103 deletions
@@ -0,0 +1,18 @@
package test
open class ClassVarModality() {
open var property1 = 1
final internal var property2 = 1
open var property3 = 1
private set
final internal var property4 = 1
private set
}
abstract class ClassVarModalityAbstract {
abstract var property1 : java.util.Date
public set
}