Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-542.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6acf8e3df3a36c5dcb1068e6caadb2db75b29d76 (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
//
// See bug 78113
//	

public struct ARec
	{
		decimal mVal;
		public ARec(decimal val)
		{
			mVal = Round(val, 1); 
		}

		decimal Round(int digits)
		{
			return Round(mVal, digits);
		}

		static decimal Round(decimal val, int digits)
		{
			return 0;
		}
	}

class X {
public static void Main () {
}
}