* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / cs0525.cs
1 // cs0525.cs: Interfaces cannot contain fields
2 // Line: 5
3 interface Interface { 
4         bool value = false;
5 }