Kapt: Escape nested comments in doc comments (KT-22469)

This commit is contained in:
Yan Zhulanow
2018-01-24 21:47:59 +03:00
parent abda4bfb57
commit 5fc9c5671c
3 changed files with 47 additions and 2 deletions
@@ -59,4 +59,9 @@ enum class EnumError {
};
abstract fun doIt(): String
}
}
/**
* `/* Failure */`
*/
interface TestComponent
@@ -182,3 +182,15 @@ public final class Test4 {
super();
}
}
////////////////////
import java.lang.System;
/**
* * `/ * Failure * /`
*/
@kotlin.Metadata()
public abstract interface TestComponent {
}