Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-exmethod-21.cs
1 using System;
2 using External;
3
4 interface I
5 {
6 }
7
8 namespace Outer.Inner
9 {
10         class Test {
11                 static void M (I list)
12                 {
13                         list.AddRange();
14                 }
15                 
16                 public static void Main()
17                 {
18                 }
19         }
20 }
21
22 namespace Outer
23 {
24 }
25
26 namespace External
27 {
28         static class ExtensionMethods {
29                 public static void AddRange (this I list)
30                 {
31                 }
32         }
33 }