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

cs0105.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0c23127fab579d8b0e42a4ce475cb016c141b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Compiler options: -warnaserror -warn:3

using System;
using System;

public class X
{
	static int Main () 
	{
		int a=5;
		return a;
	}
}