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
Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git]
/
mcs
/
tests
/
gtest-315.cs
blob
b0de4e866b470ae71ed5d9f4b0883bc1661a278e
1
// Bug #80731
2
public partial class
A
<
T
>
3
{
4
public class
B
{}
5
}
6
7
public partial class
A
<
T
>
8
{
9
public
B Test
;
10
}
11
12
class
X
13
{
14
public static void
Main
()
15
{
16
A
<
int
>
a
=
new
A
<
int
> ();
17
a
.
Test
=
new
A
<
int
>.
B
();
18
}
19
}