This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Fatal Error C1071
unexpected end of file found in comment
The compiler reached the end of the file while scanning a comment.
Possible causes
- Missing comment terminator (*/).
- Missing newline character after a comment on the last line of a source file.
The following sample generates C1071:
void main() {
}
/* this comment is fine */
/* forgot the closing tag // C1071