Updated project.
[mono.git] / mcs / btests / ExternalSourceDirectivesC2.vb
1 'Line 13, BC30579: '#ExternalSource' directive must end with matching '#End ExternalSource' directive
2
3 Imports System
4 Module ExternalSourceDirective
5         Sub Main()
6                 #ExternalSource("/home/a.aspx",30)
7                 Console.WriteLine("In a.aspx")
8                 #End ExternalSource
9
10                 #ExternalSource("/home/index.aspx", 1024)
11                 Console.WriteLine("In index.aspx")
12         End Sub
13 End Module