[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0134-3.cs
1 // CS0134: A constant `C.b' of reference type `bool[]' can only be initialized with null
2 // Line: 6
3
4 class C
5 {
6         const bool [] b = { true };
7 }