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

cs1521-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f98d970379206ea016c5c9a010e04a380805b83e (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1521: Invalid base type
// Line: 9
// Compiler options: -unsafe

struct C
{
}

unsafe class C2: C*
{
}