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: 5b2d201d892980505b66219c5c769ba168ab6072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0209.cs: variable in a fixed statement must be a pointer
// Line: 9
// Compiler options: -unsafe

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