(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0213.cs
blob00faffd0ef404aaf59d5c8050e39beb51d816164
1 // cs0213.cs: You do not need to 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) {}