2003-02-16 Daniel Morgan <danmorg@sc.rr.com>
[mono.git] / mcs / errors / cs0209.cs
1 // cs0209.cs: variable in a fixed statement must be a pointer
2 // Line: 7
3 public class A
4 {
5         unsafe static void Main ()
6         {
7                 fixed (string s = null)
8                 {
9                 }
10         }
11 }
12
13