repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-xml-044.cs
blob
35ad3c17a185dd988e06e84c9e0b9a9ddc7a28e1
1
// Compiler options: -doc:xml-044.xml -warnaserror -warn:4
2
using
System
.
Xml
;
3
4
/// <summary />
5
public class
EntryPoint
6
{
7
static void
Main
()
8
{
9
}
10
11
/// <summary>
12
/// <see cref="M:EntryPoint.B.Decide(System.Int32)" />
13
/// </summary>
14
internal class
A
15
{
16
public virtual void
Decide
(
int
a
)
17
{
18
}
19
}
20
21
internal class
B
:
A
22
{
23
}
24
}
25