[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / gtest-partial-010.cs
blob38bed351304c3ad6ad08983abe962529a8b8c439
1 using System;
3 namespace A
5 interface IA<T>
7 int Foo (T value);
10 internal partial class C : IA<C.NA>
12 private abstract class NA
16 int IA<NA>.Foo (NA value)
18 return 0;
21 static void Main ()
27 namespace A
29 internal partial class C : IA<C.NB>
31 private class NB
35 int IA<NB>.Foo (NB value)
37 return 0;