summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10055-UNI-1345.cs
blob: 13f6112739ca19a12b1157810c988090de355615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Class
{
    public void foo()
    {
        data.Sort(
            delegate(InputData lhs, InputData rhs)
            {
                return lhs.m_Name.CompareTo(rhs.m_Name);
            });
    }
}

// Want the braces aligning with the delegate keyword.

// Probably also an issue with lambda style delegates.