Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DoubleLiteralC1.vb « btests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f1913ea401f47e00d7a4e778a3fec07a55a53af (plain)
1
2
3
4
5
6
7
8
9
10
11
Imports System
Module DoubleLiteral
	Sub Main()
		Try
			Dim a As Double=1.23E+400D
			     		                                                                                   	     
		Catch e As Exception
			Console.WriteLine(e.Message)
		End Try
	End Sub
End Module