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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0186-2.cs
blob
83660905f6a2ee98377b332cedc423b6b758e74e
1
// cs0186-2.cs: Use of null is not valid in this context
2
// Line: 2
3
4
class
ClassMain
{
5
public static void
Main
() {
6
foreach
(
System
.
Type type
in null
) {
7
}
8
}
9
}
10