9 lines
181 B
Kotlin
Vendored
9 lines
181 B
Kotlin
Vendored
internal class C {
|
|
fun foo1(s1: String?, s2: String?): Boolean {
|
|
return s1 == s2
|
|
}
|
|
|
|
fun foo2(s1: String?, s2: String?): Boolean {
|
|
return s1 != s2
|
|
}
|
|
} |