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
2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
errors
/
gcs1547-2.cs
blob
f4fb26cbfe1704bc121a3eb88e46f05ed3860c43
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 8
3
4
class
X
5
{
6
static void
Main
()
7
{
8
object
o
=
default
(
void
);
9
}
10
}