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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-495.cs
blob
c5f2ce12d13403d256fa3c8e1a4b536355299555
1
class
Repro
2
{
3
class
Outer
4
{
5
public class
Inner
<
T
>
where T
:
class
6
{
7
public static
T
[]
Values
;
8
}
9
}
10
public static void
Main
()
11
{
12
Outer
.
Inner
<
string
>.
Values
=
new string
[
0
];
13
}
14
}