* HttpWebRequest.cs: When retrying a POST request after an authentication
[mono.git] / mcs / errors / cs0213.cs
1 // cs0213.cs: You do not need to use the fixed statement to take the address of an already fixed expression\r
2 // Line: 12\r
3 // Compiler options: -unsafe\r
4 \r
5 class UnsafeClass {\r
6         unsafe UnsafeClass () {\r
7                 int value = 5;\r
8                 Calculate(value);\r
9         }\r
10         \r
11         unsafe void Calculate (int value) {\r
12                 fixed (int *x = &value) {}\r
13         }\r
14 }\r
15 \r
16 \r