**** Merged from MCS ****
[mono-project.git] / mcs / btests / ConstantC10.vb
blobcd62ab9fc3883ccaaf3f97faf5340f5257686880
1 REM LineNo: 13
2 REM ExpectedError: BC30424
3 REM ErrorMessage: Constants must be an intrinsic or enumerated type, not a class, structure, or array type.
5 REM LineNo: 13
6 REM ExpectedError: BC30438
7 REM ErrorMessage: Constants must have a value.
9 Class C
10 End Class
12 Module ConstantC3
13 Const a As C
14 Sub main()
15 End Sub
16 End Module