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: 228401b453c87f51b7c2c8d2a0582bb0fcb5085d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0020.cs : Division by constant zero.
// Line : 999999999

using System;

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