summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cs/12108-Issue_2705.cs
blob: 08619bb1a6b682be7b3b6cbf77795216eb5e606e (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;
	}
}
}