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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1547-12.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
}