Replace deprecated annotations with modifiers in testData

This commit is contained in:
Denis Zharkov
2015-09-17 13:04:46 +03:00
parent 4850fd10f0
commit 9dada595b6
18 changed files with 39 additions and 35 deletions
@@ -12,7 +12,7 @@ internal inline fun repeatAction(times: Int, action: () -> Unit) {
internal fun localWithoutCapture(a: Int, b: Int): Int {
var sum = 0
@inline fun inc(x: Int): Int {
inline fun inc(x: Int): Int {
return x + 1
}
@@ -26,7 +26,7 @@ internal fun localWithoutCapture(a: Int, b: Int): Int {
internal fun localWithCapture(a: Int, b: Int): Int {
var sum = 0
@inline fun inc() {
inline fun inc() {
sum++
}