Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs0107.cs
1 // CS0107: More than one protection modifier specified
2 // Line: 4
3 class X {
4         public private class X2 {
5         }
6 }