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: 014b945f21b2d2fafaeafed0de855f3a367364bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0184.cs: The expression is never of the provided type
// Line:

class X {

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