Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-331.cs
1 // Compiler options: -unsafe
2
3 class T
4 {
5         unsafe private byte *ptr;
6         unsafe internal byte * Ptr {
7                 get { return ptr; }
8                 set { ptr = value; }
9         }
10         
11         public static void Main () {}
12 }