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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
test-xml-048.cs
blob
b30803227f25fdb2dee2886d039629f882e018f0
1
// Compiler options: -doc:xml-048.xml -warnaserror
2
/// <summary />
3
public class
A
{
4
static void
Main
() {
5
}
6
7
/// <summary />
8
public virtual string
Level
{
9
get
{ return null; }
10
}
11
12
/// <summary />
13
public virtual void
Test
() {
14
}
15
}
16
17
/// <summary>
18
/// <see cref="Level" />
19
/// <see cref="Test" />
20
/// </summary>
21
public class
B
:
A
{
22
/// <summary />
23
public override string
Level
{
24
get
{ return null; }
25
}
26
27
/// <summary />
28
public override void
Test
() {
29
}
30
}