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: 9c4e7ade77ef65060faf8e4e07fad9b7ac60345c (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;
		}
	}

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