summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cs/60042-indent-multistring-coulmn1.cs
blob: 4f66d5413b6667f897d8482ced86e61c800ac296 (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
");