Implement 'not' postfix template
#KT-4710 In Progress
This commit is contained in:
committed by
Nikolay Krasko
parent
1eeec18303
commit
f18b9cceb3
@@ -0,0 +1,3 @@
|
||||
fun foo(x: Boolean) {
|
||||
x.not<caret>
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun foo(x: Boolean) {
|
||||
!x
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun foo(x: String) {
|
||||
x.not<caret>
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun foo(x: String) {
|
||||
x.not
|
||||
}
|
||||
Reference in New Issue
Block a user