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

test-161.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7877bdea6394a32de70e93febf31b6bae14c1b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;

public class ZipEntry
{
	DateTime cal = DateTime.Now;

	public ZipEntry(string name)
	{
	}

	public ZipEntry(ZipEntry e)
	{
	}

	public DateTime DateTime {
		get {
			return cal;
		}
	}

	public static int Main () {
		// Compilation only test.
		return 0;
	}
}