Intentions: Convert extension receiver to parameter and vice versa

This commit is contained in:
Alexey Sedunov
2015-01-20 13:42:53 +03:00
parent 7b6160b92f
commit cef9996ba7
31 changed files with 408 additions and 3 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
class Foo(<caret>s: String, n: Int) {
}
fun test() {
Foo("1", 2)
}