summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cs/UNI-18829.cs
blob: 62c9f8fb7dc7c70cfe087f5bb75ae306356ca8e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// It shouldn't detele the space after the tuple definition
public static (bool updated, Warnings warnings) UpdateIncludesInFile(
    string fileToUpdate, string oldIncludeFile, string newIncludeFile)
{
    // ...
}

// It shouldn't detele the space after the tuple definition
public static (int, string) UpdateIncludesInFile(
    string fileToUpdate, string oldIncludeFile, string newIncludeFile)
{
    // ...
}

// It shouldn't detele the space after the tuple definition and updated, warnings should be tokenized as types
public static (updated, warnings) UpdateIncludesInFile(
    string fileToUpdate, string oldIncludeFile, string newIncludeFile)
{
    // ...
}