repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0656.cs
blob
98ed42b0b10796746271b9ce3b29d31f316573b7
1
// CS0656: The compiler required member `decimal..ctor(int)' could not be found or is inaccessible
2
// Line: 9
3
// Compiler options: -nostdlib CS0656-corlib.cs
4
5
class
C
6
{
7
static void
Main
()
8
{
9
decimal
d
=
12
M
;
10
}
11
}