Updated project.
[mono.git] / mcs / btests / ExternalSourceDirectivesC1.vb
1 'Line 30, BC30580: ExternalSource Directives may not be nested
2
3 Imports System
4 Module ExternalDirectives
5         Sub Main()
6                 #ExternalSource("/home/test.aspx",30)
7                 #ExternalSource("/home/test.aspx",30)
8                 Console.WriteLine("In test.aspx")
9                 #End ExternalSource
10                 #End ExternalSource
11         End Sub
12 End Module