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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-474.cs
blob
11d7ada553bae5ecfd88f0fabc37a0a701bea890
1
class
A
<
X
>
2
{
3
public const
A
<
int
>
Value
=
B
<
int
>.
Value
;
4
}
5
6
class
B
<
T
>
7
{
8
public const
A
<
T
>
Value
=
default
(
A
<
T
>);
9
}
10
11
class
C
12
{
13
public static void
Main
()
14
{
15
new
B
<
int
> ();
16
}
17
}