Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / test-627.cs
1 using System;
2
3 interface A {
4         void B ();
5 }
6
7 interface X {
8         void B ();
9 }
10
11
12 class B : A, X {
13         void X.B () {}
14         void A.B () {}
15         
16 }
17
18 namespace N {
19         interface B {
20         }
21 }
22
23 class M {
24         static void N (object N)
25         {
26                 object x = (N.B) N;
27         }
28
29         static void Main ()
30         {
31         }
32 }
33