**** Merged from MCS ****
[mono-project.git] / mcs / btests / StringTypeCharTestC1.vb
blob617285dcfc1c4fb63e19f0d4efe6e3a2db24eeff
1 REM LineNo: 8
2 REM ExpectedError: BC30277
3 REM ErrorMessage: Type character '$' does not match declared data type 'System.Object'.
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
10 Dim b As String
11 b$=10L 'Long type character does not conform with assigned type String
12 End Sub
13 End Module