Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0133-5.cs
1 // CS0133: The expression being assigned to `b' must be constant
2 // Line: 8
3
4 class X
5 {
6         static void Main ()
7         {
8                 const int b = true ? 1 : b;
9         }
10 }