New J2K: fix converting multiline comment with /* inside

#KT-18001 fixed
#KT-35081 fixed
This commit is contained in:
Ilya Kirillov
2020-01-10 12:05:07 +03:00
parent a87de01c74
commit 5be80be74d
4 changed files with 39 additions and 3 deletions
@@ -0,0 +1,16 @@
/**
/* comment
*/
class A
/**
/** / B
*/
class B
/**
/** / C
/*/
class C
@@ -0,0 +1,14 @@
/**
* / * comment
*/
internal class A
/**
* / ** / B
*/
internal class B
/**
* / ** / C
* / */
internal class C