Allow passing null to JsonArray.Add()
[mono.git] / mcs / tests / test-609.cs
1 using System;
2
3 class Test
4 {    
5         public static int Main()
6         {
7                 if (!("aoeu" is String))
8                         return 1;
9                         
10                 if (!("aoeu" is Object))
11                         return 2;
12                         
13                 return 0;
14         }
15 }