blob: 89a35d4dffe902c2efa00d489e637acbd451b170 [file] [log] [blame] [edit]
40 columns |
>>> Line comment after dot.
variable = . // Comment.
whoDoesThis();
<<< 3.10
variable =
. // Comment.
whoDoesThis();
>>> Block comment after dot.
variable = ./* Comment. */whoDoesThis();
<<< 3.10
variable =
. /* Comment. */ whoDoesThis();
>>> Line comment after `const`.
variable = const // Comment.
. whoDoesThis();
<<< 3.10
variable =
const // Comment.
.whoDoesThis();
>>> Block comment after `const`.
variable = const/* Comment. */.whoDoesThis();
<<< 3.10
variable =
const /* Comment. */ .whoDoesThis();