[xbuild] Add support for Before/AfterTargets.
[mono.git] / mcs / errors / cs0107.cs
1 // cs0107.cs: More than one protection modifier specified
2 // Line: 4
3 class X {
4         public private class X2 {
5         }
6 }