Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-466-lib.cs
1 // Compiler options: -t:library
2
3 namespace A
4 {
5         public class C
6         {
7                 public void Foo ()
8                 {
9                 }
10         }
11 }
12
13 namespace A.B
14 {
15         class C
16         {
17         }
18 }