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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-766.cs
blob
7adfa390f1b40628708bba632cd16a75db4f1dbd
1
namespace
A
2
{
3
using
Base
=
B
.
Color
;
4
5
class
Color
6
{
7
protected
Base Base
8
{
9
get
{ return Base.Blue; }
10
}
11
12
protected
Base NewBase
{
13
get
{
14
return
Base
.
From
(
1
);
15
}
16
}
17
18
public static void
Main
()
19
{
20
}
21
}
22
}
23
24
namespace
B
25
{
26
public struct
Color
27
{
28
public static
Color Blue
=
new
Color
();
29
30
public static
Color
From
(
int
i
)
31
{
32
return new
Color
();
33
}
34
}
35
}