2004-06-09 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / btests / StringTypeCharTestC1.vb
1 Module M
2         Sub Main()
3                 Dim a 'Default type assigned is Object
4                 a$="Hello" 'String type character does not conform with assigned type Object
5                 
6                 Dim b As String
7                 b$=10L 'Long type character does not conform with assigned type String
8                 
9                 Dim c $
10
11         End Sub
12 End Module