Test stubs for compiled Kotlin files
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
public object Objects {
|
||||
|
||||
val c = 0
|
||||
|
||||
fun f() {
|
||||
}
|
||||
|
||||
private object InnerObject : A {
|
||||
val c = 0
|
||||
|
||||
fun f() {
|
||||
}
|
||||
}
|
||||
|
||||
public object OtherObject : NestedClass() {
|
||||
|
||||
val c = 0
|
||||
|
||||
fun f() {
|
||||
}
|
||||
}
|
||||
|
||||
internal open class NestedClass
|
||||
|
||||
|
||||
}
|
||||
|
||||
trait A {
|
||||
}
|
||||
Reference in New Issue
Block a user