Add new error case
[mono.git] / mcs / btests / ExternalSourceDirectivesC2.vb
1 REM LineNo: 17
2 REM ExpectedError: BC30579
3 REM ErrorMessage: '#ExternalSource' statement must end with a matching '#End ExternalSource'.
4
5
6
7 Imports System
8 Module ExternalSourceDirective
9         Sub Main()
10                 #ExternalSource("/home/a.aspx",30)
11                 Console.WriteLine("In a.aspx")
12                 #End ExternalSource
13
14                 #ExternalSource("/home/index.aspx", 1024)
15                 Console.WriteLine("In index.aspx")
16         End Sub
17 End Module