Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1f2055 commit 01fe465Copy full SHA for 01fe465
1 file changed
java/ql/test/kotlin/library-tests/ministdlib/MiniStdLib.kt
@@ -14,20 +14,20 @@ public open class Any {
14
open operator fun equals(other: Any?): Boolean { return this.equals(other) }
15
}
16
17
-public open class String {
+public class String {
18
operator fun plus(other: Any?): String { return this.plus(other) }
19
20
21
-public open class Boolean {
+public class Boolean {
22
operator fun not(): Boolean { return this.not() }
23
24
25
-public open class Int {
+public class Int {
26
operator fun plus(other: Int): Int { return this.plus(other) }
27
operator fun times(other: Int): Int { return this.times(other) }
28
infix fun xor(other: Int): Int { return this.xor(other) }
29
30
31
-public open class Unit {
+public object Unit {
32
33
0 commit comments