blob: aa324f2e51f95b119558a4ce5db0d75b09534e29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
int bar;
// blank line should be inserted before this comment
vector<int> foo()
{
return {};
}
// blank line should be inserted before this comment, not after
template<>
volatile
int x::
foo()
{
return 0;
}
|