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

cs0208-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce33dded0a757043002d65717d4a88a09532f1ab (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0208-9.cs: Cannot declare a pointer to a managed type ('Foo')
// Line: 7
// Compiler options: -t:library -unsafe

public unsafe struct Foo
{
        public Foo *foo;
	string x;
}