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

cs0210-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 962f7f2d27a785dd6eccbc4db1b2ad808222b44c (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0210.cs: You must provide an initializer in a fixed or using statement declaration
// Line: 7
// Compiler options: -unsafe

public class MainClass {
        unsafe static void Main () {
                fixed (int* p) {
                }
        }
}