2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / errors / StringTypeCharTestC1.vb
1 REM LineNo: 8
2 REM ExpectedError: BC30277
3 REM ErrorMessage: Type character '$' does not match declared data type 'System.Object'.
4
5 Module M
6         Sub Main()
7                 Dim a 'Default type assigned is Object
8                 a$="Hello" 'String type character does not conform with assigned type Object
9                 
10                 Dim b As String
11                 b$=10L 'Long type character does not conform with assigned type String
12         End Sub
13 End Module