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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
errors
/
cs1547-7.cs
blob
a1e15dc294bd4e162be39cd599bc19559991398a
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
}