[FIR-TEST] Move analysis tests to separate module
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
enum class EC {
|
||||
A, B;
|
||||
companion object {
|
||||
fun u(ec: EC): Boolean {
|
||||
return when (ec) {
|
||||
A -> true
|
||||
B -> false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user