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
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-365.cs
blob
26a533b992f8320adfb876191045976129d6dcce
1
public enum
LiteralType
2
{
3
Void
,
4
}
5
6
class
C
7
{
8
public
LiteralType LiteralType
9
{
10
set
11
{
12
}
13
}
14
15
private
LiteralType
[]
widenSbyte
=
new
LiteralType
[]
16
{
17
LiteralType
.
Void
18
};
19
20
static void
Main
() {}
21
}
22