Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0525-2.cs
1 // CS0525: Interfaces cannot contain fields or constants
2 // Line: 9
3
4 interface Interface
5 {
6     const bool value = false;
7 }