summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0210-2.cs
blob: 590f2f382d3a1fb20596b866ea6cf5f9bd4a8f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0210: 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) {
                }
        }
}