New tests.
[mono.git] / mcs / errors / cs1547-8.cs
1 // CS1547: Keyword `void' cannot be used in this context\r
2 // Line: 8\r
3 \r
4 class C\r
5 {\r
6         static void Main ()\r
7         {\r
8                 bool b = 1 is void;\r
9         }\r
10 }