// cs0029: cannot implicitly conver type `double' to `decimal' // Line: 7 class T { public static int Main (string [] args) { decimal d = 100d; return 1; } }