* SoapMessageFormater.cs: In BuildSoapMessageFromMethodResponse, add the
[mono.git] / mcs / errors / cs0209.cs
1 // cs0209.cs: variable in a fixed statement must be a pointer
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