* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / cs1547-5.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 6
3
4 class C {\r
5         static void Main () {\r
6                 int i = sizeof (void);\r
7         }
8 }