Most programming languages do not allow comment nesting - once a comment delimiter starts, it cannot contain another comment delimiter of the same type. For example, /* /* */ */ would end at the first */ encountered. Only certain specialized formats support nesting. This question likely refers to Java/C/C++ style comments.