**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / ExternalSourceDirectivesC2.vb
blob34eaecc2168668ee405ed6475facdd4e067e57a2
1 REM LineNo: 17
2 REM ExpectedError: BC30579
3 REM ErrorMessage: '#ExternalSource' statement must end with a matching '#End ExternalSource'.
7 Imports System
8 Module ExternalSourceDirective
9 Sub Main()
10 #ExternalSource("/home/a.aspx",30)
11 Console.WriteLine("In a.aspx")
12 #End ExternalSource
14 #ExternalSource("/home/index.aspx", 1024)
15 Console.WriteLine("In index.aspx")
16 End Sub
17 End Module