repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0283.cs
blob
31ac6c678a13ff83e6a525c6a05a79c79e0367d6
1
// CS0283: 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
}