(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / LongTypeCharTestC1.vb
blob94cf872d1881bb58e8a71a8a1196879952977ae7
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&=10 'Long type character does not conform with assigned type Object
9 End Sub
10 End Module