summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cs/UNI-1345.cs
blob: e218e6a2ce95f49295a1033d5f6049f71b26a959 (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.