2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0213.cs
blobf0573110ecd33694907cf3d6097c3f1c63f0237c
1 // cs0213.cs: You cannot use the fixed statement to take the address of an already fixed expression
2 // Line: 12
3 // Compiler options: -unsafe
5 class UnsafeClass {
6 unsafe UnsafeClass () {
7 int value = 5;
8 Calculate(value);
11 unsafe void Calculate (int value) {
12 fixed (int *x = &value) {}