Renamed intentions package

This commit is contained in:
Valentin Kipyatkov
2015-05-12 13:57:45 +03:00
parent 8095aabd42
commit 096df91972
142 changed files with 509 additions and 509 deletions
@@ -0,0 +1,8 @@
// INTENTION_TEXT: Replace with '/' operator
fun test() {
class Test {
fun div(a: Int): Test = Test()
}
val test = Test()
test.div<caret>(1)
}