summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cs/UNI-1977.cs
blob: e4b1b375326814eda54ad20bc1433e578f173c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// We specifically avoid our own tab-space in GenericFormat because of the @"" issue.
// So we must rely on Uncrustify getting it right, and it nearly does - except for the
// "Layout has changed, bail out now" where it does not replace the tab preceding the comment.

namespace Namespace
{
	class Class
	{
		public void Foo()
		{
			if (bar)
			{
				//	Layout has changed, bail out now.
				bar = false;
			}
		}
	}
}