**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0029.cs
bloba174d59309600e2f5dddf1daa26ee92c740df902
1 // cs0029: cannot implicitly convert type `double' to `decimal'
2 // Line: 7
4 class T {
5 public static int Main (string [] args)
7 decimal d = 100d;
9 return 1;