Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-331.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 444da7d60e23231db90f330ed7bcb8ef2097fcda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: -unsafe

class T
{
        unsafe private byte *ptr;
        unsafe internal byte * Ptr {
                get { return ptr; }
                set { ptr = value; }
        }
	
	public static void Main () {}
}