Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0105-3.cs
1 // CS0105: The using directive for `N.M' appeared previously in this namespace
2 // Line: 8
3 // Compiler options: -warnaserror -warn:3
4
5 namespace N
6 {
7         using M;
8         using N.M;
9         
10         namespace M
11         {
12         }
13 }