Add incremental tests for parameters with default values

Original commit: d352905a72
This commit is contained in:
Alexey Tsvetkov
2016-03-09 14:17:20 +03:00
parent 1e279a8c35
commit a763af2ae0
109 changed files with 1128 additions and 15 deletions
@@ -0,0 +1,17 @@
package test
class A {
fun argumentAdded() {}
fun argumentRemoved(x: Int = 2) {}
fun valueAdded(x: Int) {}
fun valueRemoved(x: Int = 4) {}
fun valueChanged(x: Int = 5) {}
}
class ConstructorValueAdded(x: Int)
class ConstructorValueRemoved(x: Int = 8)
class ConstructorValueChanged(x: Int = 19)
class ConstructorArgumentAdded()
class ConstructorArgumentRemoved(x: Int = 10)