Tests for file structure

This commit is contained in:
Nikolay Krasko
2014-05-19 20:49:09 +04:00
parent 63d5897d93
commit dfd66440b4
14 changed files with 178 additions and 1 deletions
@@ -0,0 +1 @@
+EmptyFile.kt
@@ -0,0 +1,2 @@
-InheritedMembers.kt
Test (<root>)
@@ -0,0 +1,3 @@
class Test {
}
@@ -0,0 +1,5 @@
-SeveralClasses.kt
A (<root>)
B (<root>)
Some (<root>)
Other (<root>)
@@ -0,0 +1,4 @@
trait A
open class B
class Some: B(), A
class Other: A
@@ -0,0 +1,6 @@
-Simple.kt
-Test (<root>)
str:kotlin.String
some:kotlin.Int
foo():kotlin.Int
other():kotlin.Unit
@@ -0,0 +1,5 @@
class Test(val str: String) {
private val some = 1
protected fun foo() = some
public fun other() {}
}