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