/* * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license * that can be found in the LICENSE file. */ package codegen.enum.valueOf import kotlin.test.* enum class E { E3, E1, E2 } @Test fun runTest() { println(E.valueOf("E1").toString()) println(E.valueOf("E2").toString()) println(E.valueOf("E3").toString()) println(enumValueOf("E1").toString()) println(enumValueOf("E2").toString()) println(enumValueOf("E3").toString()) }