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

cs0209.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 838ff42d9de77afed959fb1f5ecc13aa19805f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0209.cs: The type of locals declared in a fixed statement must be a pointer type
// Line: 9
// Compiler options: -unsafe

public class A
{
        unsafe static void Main ()
        {
                fixed (string s = null)
                {
                }
        }
}