Minor. Fix test with obsolete enum syntax

This commit is contained in:
Denis Zharkov
2015-09-15 12:39:49 +03:00
parent 05eaf37123
commit eebe66e041
5 changed files with 6 additions and 8 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
package rendererTest
private enum class TheEnum(val rgb: Int) {
VAL1: TheEnum(0xFF0000)
VAL1(0xFF0000)
}
//package rendererTest