Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / test-9.cs
blob581b9aed0f79d543d4e9d00937b2a2c181b78a69
1 class X {
2 public static int Main (string [] args)
4 decimal a, b, c, d;
6 a = 0;
7 b = 1;
8 c = d = 3;
10 if (b + b + b != c)
11 return 1;
13 if (a != (b - 1))
14 return 2;
16 if (c != d)
17 return 3;
19 if (!(c == d))
20 return 4;
22 return 0;