dlr bug
[mcs.git] / tests / test-331.cs
blob444da7d60e23231db90f330ed7bcb8ef2097fcda
1 // Compiler options: -unsafe
3 class T
5 unsafe private byte *ptr;
6 unsafe internal byte * Ptr {
7 get { return ptr; }
8 set { ptr = value; }
11 public static void Main () {}