...
Noncompliant Code Example
The following examples show mixed comments that may be misunderstood:
Code Block | ||
---|---|---|
| ||
// */ /* comment, not syntax error */ f = g/**//h; /* equivalent to f = g / h; */ /*//*/ l(); /* equivalent to l(); */ m = n//**/o + p; /* equivalent to m = n + p; */ a = b //*divisor:*/c +d; /* equivalent to a = b+d; */ |
...