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

5 lines
95 B
Plaintext

class Foo {
fun get(a: Boolean, b: Boolean): Boolean {
return <spot> !(a && b)</spot>
}
}