Compilers goes crazy when you have "\\" inside a comment

I think inside a comment the backslash doesn't have its special meaning as the escape character except the last one on a line. The first backslash is therefore ignored - i.e. it isn't read as an escape for the following backslash. The second backslash then gets read as the line continuation. The compiler issues a warning:

sketch_sep16a.cpp:8:1: warning: multi-line comment

Pete