[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[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 }