summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-2021.cs
blob: 2b08fafea4e09d30c85fb56b7a716ad99e811ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// updating the testcase for 1247 
// concluded that we need to convert all the 4,3,2 liners to one liner based on the option
int fun ()
{ 
return 0; 
}

int fun() {return 0; }

int fun() {
return 0; 
}

int fun() {
return 0; }

int fun()
{return 0; }

int fun() { return 0; 
}

int fun() 
{
return 0; }

int fun() 
{ return 0; 
}