When converting a template from Java to Scala, I've noticed the following quirk with multiline comments that can be reduced to the following snippet:
/**
* /*
*/
class Blah {}
The above fails to compile with "error: unclosed comment", while being valid in Java.
This proves problematic, since it makes it harder to document e.g. acceptance of glob-type strings (e.g. "requires a path like something/*.myformat
").
Is this a bug or a feature?