Tests for declaration mappings dumping from compiler
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
public interface PublicInterface {
|
||||
|
||||
companion object {}
|
||||
|
||||
public object ObjPublic
|
||||
private object ObjPrivate
|
||||
|
||||
public class NestedPublic
|
||||
private class NestedPrivate
|
||||
}
|
||||
|
||||
internal interface InternalInterface {
|
||||
companion object {}
|
||||
}
|
||||
|
||||
internal interface InternalInterfacePrivateCompanion {
|
||||
private companion object {}
|
||||
}
|
||||
|
||||
private interface PrivateInterface {
|
||||
companion object {}
|
||||
|
||||
public object ObjPublic
|
||||
private object ObjPrivate
|
||||
|
||||
public class NestedPublic
|
||||
private class NestedPrivate
|
||||
}
|
||||
|
||||
private interface PrivateInterfacePrivateCompanion {
|
||||
private companion object
|
||||
}
|
||||
Reference in New Issue
Block a user