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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1547-3.cs
blob
7064915d5c3fefe1c2ca82fb07d879dfc6801acb
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 8
3
4
5
class
X
6
{
7
static void
Main
()
8
{
9
var
e
=
from void
v
in new int
[]
{ 0 }
select
i
;
10
}
11
}