Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertBinaryExpressionWithDemorgansLawIntention/after.kt.template
T
2017-06-28 15:28:43 +03:00

5 lines
80 B
Plaintext

class Foo {
fun get(a: Boolean, b: Boolean): Boolean {
return !a || !b
}
}