Annotator test data fixed

This commit is contained in:
Andrey Breslav
2011-12-27 14:54:41 +04:00
parent 0ddd926a4b
commit 2d78ccb9e1
19 changed files with 182 additions and 242 deletions
+2 -9
View File
@@ -1,6 +1,6 @@
import java.util.*
package html
package html {
import java.util.*
abstract class Factory<T> {
abstract fun create() : T
@@ -83,12 +83,6 @@ package html {
return html
}
}
package foo {
import html.*
fun result(args : Array<String>) =
html {
head {
@@ -118,4 +112,3 @@ fun result(args : Array<String>) =
}
}
}
}