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
/
gtest-436.cs
blob
53e5396fa858f1e3e83ee85a4686c03f3fadbf48
1
public enum
AnEnum
2
{
3
value1
,
4
value2
5
}
6
7
class
SomeClass
8
{
9
public static int
Main
()
10
{
11
if
(
AnEnum
.
value1
!=
null
) {
12
return
0
;
13
}
14
15
return
1
;
16
}
17
}