[mcs] Pending implementation of accessors cannot hide base implementation with differ...
[mono.git] / mcs / tests / gtest-exmethod-35.cs
1 // Compiler options: -r:System.Core.dll -r:gtest-exmethod-35-lib.dll
2
3 using System;
4
5 static class A
6 {
7         public static void Test (this int v)
8         {
9         }
10         
11         public static void Main ()
12         {
13         }
14 }