Test compilation fix

This commit is contained in:
Mikhael Bogdanov
2013-11-21 13:52:17 +04:00
parent 191891963c
commit d11311ec20
13 changed files with 15 additions and 14 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ package kotlin.test
* Comments out a block of test code until it is implemented while keeping a link to the code
* to implement in your unit test output
*/
public inline fun todo(block: ()-> Any) {
public fun todo(block: ()-> Any) {
// println("TODO at " + (Exception() as java.lang.Throwable).getStackTrace()?.get(1) + " for " + block)
println("TODO at " + block)
}