(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ExternalSourceDirectivesC1.vb
blob131074169643cefbf5baf787016f228a67517c51
1 REM LineNo: 30
2 REM ExpectedError: BC30580
3 REM ErrorMessage: '#ExternalSource' directives cannot be nested.
5 REM LineNo: 18
6 REM ExpectedError: BC30578
7 REM ErrorMessage: '#End ExternalSource' must be preceded by a matching '#ExternalSource'.
11 Imports System
12 Module ExternalDirectives
13 Sub Main()
14 #ExternalSource("/home/test.aspx",30)
15 #ExternalSource("/home/test.aspx",30)
16 Console.WriteLine("In test.aspx")
17 #End ExternalSource
18 #End ExternalSource
19 End Sub
20 End Module