Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2002-08-08 03:05:42 +0400
committerMartin Baulig <martin@novell.com>2002-08-08 03:05:42 +0400
commit14f740684648f908ac043e0e95bab6ef98f56857 (patch)
tree382decba19b8f8d0293b33252040c9858f42a446 /mcs/tests/test-161.cs
parent08f452120b7ddd456655e783c297ebdcc7f08613 (diff)
2002-08-08 Martin Baulig <martin@gnome.org>
* test-161.cs: New test. svn path=/trunk/mcs/; revision=6522
Diffstat (limited to 'mcs/tests/test-161.cs')
-rw-r--r--mcs/tests/test-161.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/tests/test-161.cs b/mcs/tests/test-161.cs
new file mode 100644
index 00000000000..9c4e7ade77e
--- /dev/null
+++ b/mcs/tests/test-161.cs
@@ -0,0 +1,25 @@
+using System;
+
+public class ZipEntry
+{
+ DateTime cal = DateTime.Now;
+
+ public ZipEntry(string name)
+ {
+ }
+
+ public ZipEntry(ZipEntry e)
+ {
+ }
+
+ public DateTime DateTime {
+ get {
+ return cal;
+ }
+ }
+
+ static int Main () {
+ // Compilation only test.
+ return 0;
+ }
+}