* AssemblyNameTest.cs: Added tests for Clone and serialization without
[mono.git] / mcs / errors / cs0525-2.cs
1 // cs0525.cs: Interfaces cannot contain fields
2 // Line: 9
3
4 interface Interface
5 {
6     const bool value = false;
7 }