Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-exmethod-31.cs
1 using System;
2 using System.Collections.Generic;
3 using N2;
4
5 namespace N
6 {
7         static class S
8         {
9                 internal static void Map<T>(this int i, Func<T, string> f)
10                 {
11                 }
12         }
13 }
14
15 namespace N2
16 {
17         static class S2
18         {
19                 internal static void Map(this int i, int k)
20                 {
21                 }
22         }
23 }
24
25 namespace M
26 {
27         using N;
28         
29         class C
30         {
31                 public static void Main ()
32                 {
33                         1.Map(2);
34                 }
35         }
36 }