Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0209.cs
1 // CS0209: The type of locals declared in a fixed statement must be a pointer type
2 // Line: 9
3 // Compiler options: -unsafe
4
5 public class A
6 {
7         unsafe static void Main ()
8         {
9                 fixed (string s = null)
10                 {
11                 }
12         }
13 }
14
15