Updated project.
[mono.git] / mcs / btests / RegionDirectivesC3.vb
1 'Line 13, BC32025: '#Region' and '#End Region' directives cannot appear within method bodies
2 'Line 17, BC30680: '#End Region' directive must be preceded by a matching '#Region'
3
4
5 Imports System
6 Module RegionDirectives
7         Sub Main()
8
9
10         End Sub
11         
12         Sub S()
13         #Region "S"
14
15
16         End Sub
17         #End Region
18 End Module
19