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
/
gtest-partial-07.cs
blob
d3b031962f1830deecef86c20767046647191496
1
partial class
A
<
T
>
2
{
3
internal partial class
B
:
A
<
int
>
4
{
5
public void
Test
()
6
{
7
Foo
(
3
);
8
}
9
}
10
}
11
12
partial class
A
<
T
> :
X
<
T
>
13
{
14
15
}
16
17
class
X
<
U
>
18
{
19
public void
Foo
(
U arg
)
20
{
21
}
22
}
23
24
class
M
25
{
26
public static void
Main
()
27
{
28
new
A
<
string
>.
B
().
Test
();
29
}
30
}