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

cs0183.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 156a8943bc3016cea1a44b292b9e61083bb9fab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0183.cs: the expression is always of the type `x'
// Line:
// Compiler options: -warnaserror -warn:1

class X {

	static void Main ()
	{
		int i = 5;

		if (i is int){
		}
	}
}