Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0213.cs
1 // CS0213: You cannot use the fixed statement to take the address of an already fixed expression
2 // Line: 12
3 // Compiler options: -unsafe
4
5 class UnsafeClass {
6         unsafe UnsafeClass () {
7                 int value = 5;
8                 Calculate(value);
9         }
10         
11         unsafe void Calculate (int value) {
12                 fixed (int *x = &value) {}
13         }
14 }
15
16