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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-572.cs
blob
550b00e143054e6950695c2241294e3a9b4ea80c
1
struct
Color
2
{
3
public static
Color
From
(
int
i
)
4
{
5
return new
Color
();
6
}
7
8
public int
ToArgb
()
9
{
10
return
0
;
11
}
12
}
13
14
class
C
15
{
16
public
Color Color
{
17
get
{
18
return new
Color
();
19
}
20
}
21
22
void
ResetCustomColors
()
23
{
24
int
default_color
=
Color
.
From
(
0
).
ToArgb
();
25
}
26
27
public static void
Main
()
28
{
29
}
30
}