2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / errors / ForEachC7.vb
1 REM LineNo: 12\r
2 REM ExpectedError: BC30616\r
3 REM ErrorMessage: Variable 'i' hides a variable in an enclosing block.\r
4 \r
5 Imports System\r
6 \r
7 Module ForEachC7\r
8 \r
9     Sub main()\r
10         Dim arr() As Integer = {1, 2, 3}\r
11         For Each i As Integer in arr\r
12             For Each i As Integer in arr\r
13                 Console.WriteLine("Hello World")\r
14             Next\r
15         Next\r
16     End Sub\r
17 \r
18 End Module