(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / VariablesC1.vb
blob923a1333ffd3761137ddd965e880b3548ed8426c
1 REM LineNo: 9
2 REM ExpectedError: BC30451
3 REM ErrorMessage: Name 'a' is not declared.
5 Imports System
7 Module Variables
8 Sub Main()
9 a=20
10 End Sub
11 End Module