(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / DecimalTypeCharTestC3.vb
blob88c49745bbd9c532f7e4c834d92c009c4b531d22
1 REM LineNo: 8
2 REM ExpectedError: BC30277
3 REM ErrorMessage: Type character '&' does not match declared data type 'Decimal'.
5 Module M
6 Sub Main()
7 Dim b As Decimal
8 b&=10 'Long type character does not conform with assigned type Decimal
9 End Sub
10 End Module