2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-exmethod-31.cs
blob9ef1ad1e480f2860375351d69b3d4ae90fc27758
1 using System;
2 using System.Collections.Generic;
3 using N2;
5 namespace N
7 static class S
9 internal static void Map<T>(this int i, Func<T, string> f)
15 namespace N2
17 static class S2
19 internal static void Map(this int i, int k)
25 namespace M
27 using N;
29 class C
31 public static void Main ()
33 1.Map(2);