blob: 2f4ff90ad96561f251df0b49ef4c6d43e7e181ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//
// function starting with a C++ comment
//
void cppcomment(
// single line before
int single_before,
//
// multiple
// lines before
//
int multiple_before,
int end_of_line, // end of the line
int multiple_eol, //
// multiple lines
// starting at
// the EOL
//
int single_after
// single line after
,
int multiple_after
//
// multiple lines
// after.
// cant imagine anyone coding like this.
//
);
|