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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0020.cs
blob
4e0431f7c0fd450c0240537dffb3ae05ca6bbda8
1
// CS0020: Division by constant zero
2
// Line: 9
3
4
using
System
;
5
6
public class
X
{
7
static void
Main
()
8
{
9
int
i
=
1
/
0
;
10
Console
.
WriteLine
(
i
);
11
}
12
}