Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0133-6.cs
1 // CS0133: The expression being assigned to `o' must be constant
2 // Line: 8
3
4 class X
5 {
6         void Foo ()
7         {
8                 const object o = "" ?? null;
9         }
10 }