Added new tests for Assignment Statements
[mono.git] / mcs / btests / RegionDirectivesC1.vb
1 'Line 7, BC32025: '#Region' or '#End Region' directives cannot appear within a method body
2 'Line 9, BC32025: '#Region' or '#End Region' directives cannot appear within a method body
3
4 Imports System
5 Module RegionDirectives
6         Sub Main()
7                 #Region
8
9                 #End Region     
10         End Sub
11 End Module