Updated.
[mono.git] / mcs / errors / cs0233.cs
1 // cs0233.cs: sizeof can only be used in an unsafe context (consider using System.Runtime.InteropServices.Marshal.SizeOf)
2 // Line: 7
3 // Compiler options: -unsafe
4
5 public class MainClass {
6         static void Main () {
7                 const int size = sizeof(int);
8         }
9 }
10
11