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
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0283.cs
blob
33b1b8bad0fcd8f250ff9c906c7e8aa2e92d2aec
1
// cs0283.cs: The type `S' cannot be declared const
2
// Line: 10
3
4
struct
S
5
{
6
}
7
8
class
C
9
{
10
const
S s
=
new
S
();
11
}