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,36 @@
package test
class ClassVal() {
var property1 = 1
set
var property2 = Object()
protected set
var property3 = Object()
private set
protected var property4: String = ""
set
protected var property5: String = ""
private set
protected var property6: String = ""
internal set
protected var property7: java.util.Date = java.util.Date()
public set
public var property8: Int = 1
set
public var property9: Int = 1
private set
public var property10: Int = 1
protected set
public var property11: Int = 1
internal set
}