home *** CD-ROM | disk | FTP | other *** search
- /*
- June 22, 1989:
-
- Make sure the following construction works.
- Obviously, nested comments must not be enabled.
- */
-
- /* /* */
-
- #define A a // I wonder what will happen
-
- main()
- {
-
- /* aaa /* xxx
- */
-
- // This is a single-line comment, as used in Microsoft C v5.1
-
- /* // single-line comments are not recognized in regular comments. */
-
- a = 2;
-
- A = 5;
- }
-
- /* Another comment */
-