< Compile Options / Source Options >
[Format]
-comment = { nest | nonest }
|
[Description]
- | When comment=nest is specified, nested comments are allowed to be written in the source file. |
- | When comment=nonest is specified, writing nested comments will generate an error. |
- | The default for this option is comment=nonest. |
[Example]
- | When comment=nest is specified, the compiler handles the above line as a nested comment; however, when comment=nonest is specified, the compiler assumes (1) as the end of the comment. |
/* This is an example of /* nested */ comment */
(1)
|