summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/indent_comma_brace_func.cpp
blob: d417b5befe0f791df10e63543561abfac383d5f7 (plain)
1
2
3
4
5
6
7
8
9
10
#include <string>

extern char* externBufferWithAVeryLongName;
extern unsigned int externBufferSizeWithLongName;

std::string foo()
{
    return std::string{ externBufferWithAVeryLongName
        , externBufferSizeWithLongName };
}