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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1547-7.cs
blob
874a0a30c46fd1e230e1ccecb9d9c26e01690c5e
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 6
3
4
class
C
5
{
6
int
Foo
()
7
{
8
foreach
(
void
v
in this
)
9
{
10
}
11
}
12
}