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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
test-711.cs
blob
c64ae9395f8426038133acb12bf06f8456944e4b
1
using
System
;
2
3
namespace
N
4
{
5
enum
FieldType
6
{
7
Foo
8
}
9
}
10
11
namespace
N
12
{
13
class
Test
14
{
15
public
FieldType FieldType
=
FieldType
.
Foo
;
16
17
public
Test
()
18
{
19
}
20
21
public
Test
(
int
i
)
22
{
23
}
24
25
public static void
Main
()
26
{
27
}
28
}
29
}