mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
26 lines
601 B
Plaintext
26 lines
601 B
Plaintext
package test
|
|
|
|
internal final class Int {
|
|
/*primary*/ public constructor Int()
|
|
|
|
internal class object <class-object-for-Int> {
|
|
/*primary*/ private constructor <class-object-for-Int>()
|
|
}
|
|
}
|
|
|
|
private final class Pri {
|
|
/*primary*/ public constructor Pri()
|
|
|
|
private class object <class-object-for-Pri> {
|
|
/*primary*/ private constructor <class-object-for-Pri>()
|
|
}
|
|
}
|
|
|
|
public final class Pub {
|
|
/*primary*/ public constructor Pub()
|
|
|
|
public class object <class-object-for-Pub> {
|
|
/*primary*/ private constructor <class-object-for-Pub>()
|
|
}
|
|
}
|