Add types in test

This commit is contained in:
Nikolay Krasko
2012-08-05 23:49:50 +04:00
parent f7f699a929
commit 66eaeedd31
@@ -1,6 +1,6 @@
class Some() { class Some() {
public val testPublic = 12 public val testPublic : Int = 12
protected val testProtected = 12 protected val testProtected : Int = 12
private val testPrivate = 12 private val testPrivate = 12
val testPackage = 12 val testPackage = 12
} }