summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cs/60007-UNI-3083.cs
blob: 5209dc72c33b6315699ba852996928593fa029df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ClassWithCtorICall
{
    public ClassWithCtorICall()
    {
        DoICall();
    }

    //It shouldn't add an extra space before 0x1000
    [MethodImpl((MethodImplOptions)0x1000)]
    static extern void DoICall();

    //It shouldn't add an extra space before 1000
    [MethodImpl((MethodImplOptions)1000)]
    static extern void DoICall();
}