* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / errors / LongTypeCharTestC3.vb
1 REM LineNo: 8
2 REM ExpectedError: BC30277
3 REM ErrorMessage: Type character '$' does not match declared data type 'Long'.
4
5 Module M
6         Sub Main()
7                 Dim b As Long
8                 b$=10 'String type character does not conform with assigned type Long
9         End Sub
10 End Module