Renamed in test data

This commit is contained in:
Valentin Kipyatkov
2015-04-14 22:05:42 +03:00
parent 0334ad1152
commit 94480e3d5c
126 changed files with 79 additions and 79 deletions
@@ -0,0 +1,9 @@
// INTENTION_TEXT: Simplify negated '!in' expression to 'in'
class A(val e: Int) {
fun contains(i: Int): Boolean = e == i
}
fun test(n: Int) {
val a = A(1)
!(0<caret> !in a)
}