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(x: Int = 1) {}
fun argumentRemoved() {}
fun valueAdded(x: Int = 3) {}
fun valueRemoved(x: Int) {}
fun valueChanged(x: Int = 6) {}
}
class ConstructorValueAdded(x: Int = 7)
class ConstructorValueRemoved(x: Int)
class ConstructorValueChanged(x: Int = 20)
class ConstructorArgumentAdded(x: Int = 9)
class ConstructorArgumentRemoved()