[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0576.cs
1 // CS0576: Namespace `global::' contains a definition with same name as alias `S'
2 // Line: 14
3
4 using S = System;
5
6 public class S
7 {
8 }
9
10 public class Test
11 {
12         public static void Main()
13         {
14                 S s;
15         }
16 }