summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cs/indent-multistring-coulmn1.cs
blob: 56bdf473f25f7be691142bb561f1b8bc08f78758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//This
var a = hello(
    @"world"
);

//should stay the same.
//But this
var a = hello(
    @"world
");

//should get formatted to this
var a = hello(
@"world
");