do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-exmethod-27.cs
1 using System;
2 using System.Collections.Generic;
3
4 namespace Foo
5 {
6
7         static partial class Extensions
8         {
9         }
10
11         static partial class Extensions
12         {
13
14                 public static string AsString (this IList<byte> bytes)
15                 {
16                         return "42";
17                 }
18         }
19 }
20
21 namespace Bar
22 {
23
24         using Foo;
25
26         class Program
27         {
28
29                 static void Main ()
30                 {
31                         Console.WriteLine (Pan (new byte[0]));
32                 }
33
34                 internal static string Pan (byte[] bytes)
35                 {
36                         return bytes.AsString ();
37                 }
38         }
39 }