Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added some text to the first NCCE

...

Noncompliant Code Example

The following examples show mixed comments that may be misunderstood:

Code Block
bgColor#FFcccc
// */                  /* 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; */

...