Remove trailing empty lines
[mono.git] / mcs / errors / cs0214-2.cs
1 // cs0214: Pointer can only be used in unsafe context
2 // Line: 9
3 // Compiler options: -unsafe
4
5 class X {
6         static void Main ()
7         {
8                 int b = 0;
9                 method ((int *) b);
10         }
11         
12         unsafe static void method (int* i)
13         {
14         }
15 }