summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/60015-UNI-14131.cs
blob: 9656bee8cd2431569471f21994248ed79a1af34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;

class C
{
    public void S()
    {
        Action localMethod = () => {
                SomeClass.OtherMethod(new Dictionary<string, string>
            {
                {"a", "one"},
                {"b", "two"},
                {"c", "three"}
            });
            };
    }
}