Add resources-en for idea
#KT-38297 Fixed
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
val res: String
|
||||
when (n) {
|
||||
1 -> res = "one"
|
||||
2 -> res = "two"
|
||||
else -> res = "many"
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
val res = when (n) {
|
||||
1 -> "one"
|
||||
2 -> "two"
|
||||
else -> "many"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This intention converts a property with a <b>when</b> initializer to an uninitialized property followed by a <b>when</b> expression where each branch is terminated with an assignment.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user