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

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

class X {

	static void Main ()
	{
		int a = 1;
		
		if (a is byte){
		}
	}
}