Support parameter annotations. Fix class path and test data

This commit is contained in:
Andrey Breslav
2013-10-30 15:44:57 +04:00
parent c034d5e675
commit 083644ea43
11 changed files with 43 additions and 34 deletions

View File

@@ -1,6 +1,9 @@
package test
import org.jetbrains.annotations.*
public trait LoadIterableWithConflict<T> : java.lang.Object {
[ReadOnly] [Mutable]
public fun getIterable(): MutableIterable<T>?
public fun setIterable(p0: MutableIterable<T>?)
public fun setIterable([ReadOnly] [Mutable] p0: MutableIterable<T>?)
}