repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-161.cs
blob
7877bdea6394a32de70e93febf31b6bae14c1b91
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
public static int
Main
() {
22
// Compilation only test.
23
return
0
;
24
}
25
}