summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0020.cs
blob: 4e0431f7c0fd450c0240537dffb3ae05ca6bbda8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0020: Division by constant zero
// Line: 9

using System;

public class X {
	static void Main ()
	{
		int i = 1 / 0;
		Console.WriteLine (i);
	}
}