(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / DateLiteralsA.vb
bloba04b518b48290c67f5b3dbb2e7259b7574e51399
1 ' This test case runs on .Net 1.1 as well
2 ' Though the vb spec says the date format should be as follows
3 ' #[Whitespace+]DateOrTime[Whitespace+]#
5 Module DateLiterals
6 Sub Main()
7 Dim d As Date
9 d = #01/01/2004 5:05:07PM#
10 End Sub
11 End Module