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
tag rc1
[mcs.git]
/
errors
/
cs1547-5.cs
blob
315f2df89f62db8faed3b3ac4fd2b4a52fc977ec
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 6
3
4
class
C
{
5
static void
Main
() {
6
int
i
=
sizeof
(
void
);
7
}
8
}