summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cs/Issue_2705.cs
blob: 9a1b317228ccbdab59d9d599877e0201f4a1e428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//example file
public class A
{
public void A(string a)
{
	if (a == null)
	{
		return;
	}

	fixed(char* ptr = a)
	{
		 a = a + a;
	}
}
}