Test for KT-7332, already fixed
This commit is contained in:
+6
-4
@@ -1,7 +1,9 @@
|
|||||||
//file
|
//file
|
||||||
class Test {
|
class Test {
|
||||||
void test() {
|
private char c = 0;
|
||||||
char c1 = 'c';
|
|
||||||
Character c2 = 'C';
|
void test() {
|
||||||
}
|
char c1 = 'c';
|
||||||
|
Character c2 = 'C';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
internal class Test {
|
internal class Test {
|
||||||
|
private val c: Char = 0.toChar()
|
||||||
|
|
||||||
fun test() {
|
fun test() {
|
||||||
val c1 = 'c'
|
val c1 = 'c'
|
||||||
val c2 = 'C'
|
val c2 = 'C'
|
||||||
|
|||||||
Reference in New Issue
Block a user