2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0214-8.cs
blob1ab65357b03876b6db933d2a36d5c2a49fc69f22
1 // cs0214-8.cs: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 17
3 // Compiler options: -unsafe
5 public unsafe delegate void Bar (int* x);
7 class X
9 public X (Bar bar)
10 { }
12 unsafe static void Test (int* b)
13 { }
15 static void Main ()
17 X x = new X (Test);