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

cs0214-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54ed3ccc086f6a7180007719b606bbe2100681ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0214: Pointer can only be used in unsafe context
// Line: 8
// Compiler options: -unsafe

class X {
        public void a ()
        {
            void *p;
		}

		static void Main () {}
}