[msbuild] Bump to xplat-master branch HEAD
[mono.git] / mcs / errors / cs0133-4.cs
index 094fec1d6ad6c5c951cf380c6f444aef96f1c449..41fe639b44625a379510271ea3d4a7479e4d4af5 100644 (file)
@@ -1,7 +1,13 @@
-// cs0133-4.cs: The expression being assigned to `Program.y' must be constant
+// CS0133: The expression being assigned to `S.pathName' must be constant
 // Line: 12
+// Compiler options: -unsafe
 
-class Program {
-       int x;
-       const int y = x;
+class C
+{
+    public static int i = 4;
+}
+
+public unsafe struct S
+{
+    private fixed char pathName [C.i];
 }