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-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1547-8.cs
blob
91f6bd3d6aef3360a0ecea6e920ac9ff830733bf
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 8
3
4
class
C
5
{
6
static void
Main
()
7
{
8
bool
b
=
1
is void
;
9
}
10
}