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

cs1642.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5548d97de7b70807cddfd5afbd883c7b0027fe56 (plain)
1
2
3
4
5
6
7
8
// cs1642.cs: Fixed buffer fields may only be members of structs
// Line: 7
// Compiler options: -unsafe

public unsafe class C
{
    private fixed char test_1 [128];
}