summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/UNI-18777.cs
blob: 198d5be3d1b08590e8605cb41c50e027c6014628 (plain)
1
2
3
4
5
6
7
8
9
// I want to keeep the function call indented
Thingy
    .Select(x => x > 2)
    .ToList();

// it works with a var
var x = Thingy
    .Select(x => x > 2)
    .ToList();