summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cs/60020-UNI-18829.cs
blob: a72ca87b49fab8ffc5ef2cc90ab1cdaf6f5771b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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)
{
    // ...
}