[Microsoft.CSharp] Replaced with CoreFX implementation
[mono.git] / mcs / tests / gtest-exmethod-34.cs
1 // Compiler options: -warnaserror
2
3 public static class Program
4 {
5         static void Foo (this object o)
6         {
7         }
8         
9         public static void Main ()
10         {
11                 const object o = null;
12                 o.Foo ();
13         }
14 }