**** Merged from MCS ****
[mono-project.git] / mcs / btests / StructureB.vb
blobb4f6f74626d85df302c68447b84df3969913c366
1 Imports System
3 Structure S
4 Dim a as String
5 Const b as integer = 25
7 Sub NEW(l as long)
8 End Sub
9 End Structure
12 Module M
13 Sub Main()
14 dim x as S = new S(100)
15 End Sub
16 End Module