summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34351-indent_comma_brace_func.cpp
blob: 59b5b9965a8808094036fc44297929e519f715db (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 };
}