Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / test-243.cs
1 // Bug #57014.
2 using System;
3
4 public class X {
5         public const string Address = null;
6         
7         public static bool Resolve (string addr)
8         {
9                 return true;
10         }
11
12         static string Test ()
13         {
14                 return Address;
15         }
16
17         static void Main ()
18         {
19                 Resolve (Address);
20         }
21 }