**** Merged from MCS ****
[mono-project.git] / mcs / btests / ArithmeticOperators1.vb
blobeb61df6206c8af940f037284f49224d16ed4e55e
2 Imports System
4 Module ArithmeticOperators1
6 Sub main()
8 Dim b1 As Decimal
9 b1 = 34.45
10 b1 = b1 / 0
11 Console.WriteLine(b1)
13 End Sub
15 End Module