repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add test to confirm behavior of Control.SetVisibleCore, and remove some redundant...
[mcs.git]
/
tests
/
test-161.cs
blob
9c4e7ade77ef65060faf8e4e07fad9b7ac60345c
1
using
System
;
2
3
public class
ZipEntry
4
{
5
DateTime cal
=
DateTime
.
Now
;
6
7
public
ZipEntry
(
string
name
)
8
{
9
}
10
11
public
ZipEntry
(
ZipEntry e
)
12
{
13
}
14
15
public
DateTime DateTime
{
16
get
{
17
return
cal
;
18
}
19
}
20
21
static int
Main
() {
22
// Compilation only test.
23
return
0
;
24
}
25
}