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: 228445ff6b7f4758e0d1e4f890943f92b52ec121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0183.cs: the expression is always of the type `x'
// Line:

class X {

	static void Main ()
	{
		int i;

		if (i is int){
		}
	}
}