Merge pull request #4615 from alexanderkyte/string_error_handling
[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 }