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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0230.cs
blob
c330d083788c07c3f4d44304ae0fc6352222fe75
1
// CS0230: Type and identifier are both required in a foreach statement
2
// Line: 12
3
4
using
System
;
5
6
class
X
7
{
8
public static void
Main
()
9
{
10
int
[]
a
=
new int
[
5
]
{5, 4, 3, 2, 1}
;
11
12
foreach
(
int
) {
13
Console
.
WriteLine
(
x
);
14
}
15
}
16
}