* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / errors / StructureC1.vb
1 REM LineNo: 5
2 REM ExpectedError: BC30281
3 REM ErrorMessage: Structure 'S' must contain at least one instance member variable or Event declaration.
4
5 Structure S
6 End Structure
7
8 Module M
9         Sub Main()
10                 dim x as S
11         End Sub
12 End Module