[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0133-5.cs
bloba49f265c69018defc5b0a4d5840627801c083934
1 // CS0133: The expression being assigned to `b' must be constant
2 // Line: 8
4 class X
6 static void Main ()
8 const int b = true ? 1 : b;