2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-609.cs
bloba1019a2d8a0ba6f8f3cbf19b099e8f34dc21a4aa
1 using System;
3 class Test
4 {
5 public static int Main()
7 if (!("aoeu" is String))
8 return 1;
10 if (!("aoeu" is Object))
11 return 2;
13 return 0;