* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / gcs0029-3.cs
1 // CS0029: Cannot implicitly convert type `bool' to `int'
2 // Line : 7
3 \r
4 class T {\r
5         static int Main ()\r
6         {\r
7                 int a = default(bool);\r
8         }\r
9 }\r