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
w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git]
/
mcs
/
errors
/
cs0186.cs
blob
d4f5468984479759d52dd3aa773d54b103b979c5
1
// CS0186: Use of null is not valid in this context
2
// Line: 8
3
4
using
System
.
Collections
;
5
6
class
ClassMain
{
7
public static void
Main
() {
8
foreach
(
System
.
Type type
in
(
IEnumerable
)
null
) {
9
}
10
}
11
}
12