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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1547-3.cs
blob
883734a8528744532801a6460e7daa38d06015ba
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 6
3
4
class
C
{
5
const string
s
=
"3"
;
6
public object
o
= (
void
)
s
;
7
}