[xbuild] Add support for Before/AfterTargets.
[mono.git] / mcs / errors / cs0525-2.cs
1 // cs0525-2.cs: Interfaces cannot contain fields or constants
2 // Line: 9
3
4 interface Interface
5 {
6     const bool value = false;
7 }