New test.
[mono.git] / mcs / errors / cs1547-7.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 6
3
4 class C\r
5 {\r
6         int Foo ()\r
7         {\r
8                 foreach (void v in this)\r
9                 {\r
10                 }\r
11         }\r
12 }