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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1547-3.cs
blob
4067318ce55031647bdd66c7e0512c407c055dd0
1
// CS1547.cs: 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
}