* MonthCalendar.cs:
[mono-project.git] / mcs / btests / ExceptionHandlingC2.vb
blob02f95d4cd3d39fdd78e2fe33f31122c9d163d160
1 REM LineNo: 9
2 REM ExpectedError: BC30030
3 REM ErrorMessage: Try must have atleast one 'Catch' or a 'Finally'
5 Imports System
7 Module ExceptionHandlingC2
8 Sub Main()
9 Try
10 Console.WriteLine("Exception in Main")
11 End Try
12 End Sub
13 End Module