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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
dtest-049.cs
blob
3f74984b24fbd12439c7c4e9c0679290212c0276
1
public class
A
2
{
3
public class
N
:
B
.
N
4
{
5
}
6
}
7
8
public class
B
9
{
10
public class
N
11
{
12
public void
Test
()
13
{
14
}
15
}
16
}
17
18
class
C
19
{
20
public static void
Main
()
21
{
22
dynamic
n
=
new
A
.
N
();
23
n
.
Test
();
24
}
25
}