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

test-609.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1019a2d8a0ba6f8f3cbf19b099e8f34dc21a4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

class Test
{    
	public static int Main()
	{
		if (!("aoeu" is String))
			return 1;
			
		if (!("aoeu" is Object))
			return 2;
			
		return 0;
	}
}