2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / tests / DateLiteralsA.vb
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+]#
4
5 Module DateLiterals
6     Sub Main()
7         Dim d As Date
8         
9         d = #01/01/2004 5:05:07PM#
10    End Sub
11 End Module
12
13         
14