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

cs0443.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c71f7d0d71ccc88b38963c0fd0e83760309e011f (plain)
1
2
3
4
5
6
7
// CS0443: Value or constant expected
// Line: 6

public struct S
{
    fixed sbyte test[];
}