Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0020.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49b902385232ae685cead73cc0fbb60c133644a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0020.cs : Division by constant zero.
// Line: 9

using System;

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