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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
test-xml-043.cs
blob
7c7e4f9eb0fc5d15bc459f8ccc2033328c657d28
1
// Compiler options: -doc:xml-043.xml -warnaserror -warn:4
2
/// <summary />
3
public class
EntryPoint
4
{
5
static void
Main
()
6
{
7
}
8
9
private class
A
10
{
11
public virtual void
Decide
(
int
a
)
12
{
13
}
14
}
15
16
/// <summary>
17
/// <see cref="Decide (int)" />
18
/// </summary>
19
private class
B
:
A
20
{
21
public override void
Decide
(
int
a
)
22
{
23
}
24
}
25
}
26