summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cs/10066-UNI-1977.cs
blob: 94b929c435cc70d2840d558d6a79ceeb3fc88e6d (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;
            }
        }
    }
}