2004-04-05 Bernie Solomon <bernard@ugsolutions.com>
[mono.git] / mcs / btests / IntegerLiteralB.vb
1 Imports System
2 Module IntegerLiteral
3         Sub Main()
4         Try
5                 Dim a As Integer
6                 If a<>0 Then
7                         Console.WriteLine("IntegerLiteralC:Failed-Default value assigned to integer variable should be 0")
8                 End If
9         Catch e As Exception
10                 Console.WriteLine(e.Message)
11         End Try
12         End Sub
13 End Module