Deprecated enum syntax removed: change signature tests

This commit is contained in:
Mikhail Glukhikh
2015-08-07 15:53:22 +03:00
parent 076ac4f5ee
commit b87bbfc3e0
6 changed files with 13 additions and 13 deletions
@@ -1,4 +1,4 @@
enum class <caret>Hi(a: Int, b: Int) {
FOO : Hi(1, 2)
BAR : Hi(3, 4)
FOO(1, 2),
BAR(3, 4)
}