Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / gtest-419.cs
1 using System;
2
3 class Program
4 {
5         public static int Main ()
6         {
7                 int? i = ((int?) -4);
8                 int? i2 = (int?) +4;
9                 object o = (object) (int?) 42;
10
11                 return (bool) Test ("True") == true ? 0 : 1;
12         }
13
14         static object Test (string s)
15         {
16                 return (!string.IsNullOrEmpty (s)) ? (bool?) bool.Parse (s) : null;
17         }
18 }