[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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 }