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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs1547-5.cs
blob
c673fa169462cbdcab621eeb2dfb4a98976e0636
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
}