separate compiler and plugin tests

This commit is contained in:
Dmitry Jemerov
2011-10-20 16:19:02 +02:00
parent a80398098b
commit ec6dec0d37
586 changed files with 69 additions and 42 deletions
+54
View File
@@ -0,0 +1,54 @@
val foo = bar.foo.bar
val foo
val [a] foo
val foo.bar
val foo : T
val [a] foo = bar
val foo.bar
get() {}
set(sad) = foo
val foo get
val foo set
var foo
get
private set
val foo.bar
get() {}
set
val foo.bar
get
set(sad) = foo
val foo = 5; get
val foo =1; get set
var foo = 5
get
private set
val foo.bar = 5
get() {}
set
val foo.bar = 5
get
set(sad) = foo
fun foo() {
val foo = 5
get() = 5
set(int : x) = 5
}
val IList<T>.lastIndex : Int
get() = this.size - 1
val Int?.opt : Int
val Int? .opt : Int