* HttpWebRequest.cs: When retrying a POST request after an authentication
[mono.git] / mcs / errors / cs0525.cs
1 // cs0525.cs: Interfaces cannot contain fields\r
2 // Line: 5\r
3 \r
4 interface Interface {\r
5         bool value = false;\r
6 }\r
7 \r
8 \r
9 \r