Adjust testData: get rid of obsolete annotations

This commit is contained in:
Denis Zharkov
2015-06-09 20:30:52 +03:00
parent 053dcf3abf
commit c9f79c2d05
193 changed files with 322 additions and 322 deletions
@@ -11,21 +11,21 @@ inline fun repeatAction(times: Int, action: () -> Unit) {
}
fun add(state: State, a: Int, b: Int): Int {
[inline] fun inc(a: Int): Int {
@inline fun inc(a: Int): Int {
return a + 1
}
[inline] fun inc1(a: Int): Int {
@inline fun inc1(a: Int): Int {
return inc(a)
}
repeatAction(a) {
[inline] fun inc2(a: Int): Int {
@inline fun inc2(a: Int): Int {
return inc1(a)
}
repeatAction(b) {
[inline] fun State.inc() {
@inline fun State.inc() {
count = inc2(count)
}