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
* ResolvedReference.cs (.ctor): Set 'OriginalItemSpec' and 'ResolvedFrom',
[mcs.git]
/
tests
/
test-xml-046.cs
blob
53461fd289fde352112f48f2a88a4da64b1d91a3
1
// Compiler options: -doc:xml-046.xml -warnaserror
2
/// <summary />
3
public interface
IExecutable
{
4
/// <summary />
5
void
Execute
();
6
7
/// <summary />
8
object
Current
{
9
get
;
10
}
11
}
12
13
/// <summary>
14
/// <see cref="Execute" />
15
/// <see cref="Current" />
16
/// </summary>
17
public class
A
:
IExecutable
{
18
static void
Main
() {
19
}
20
21
/// <summary />
22
public void
Execute
() {
23
}
24
25
/// <summary />
26
public object
Current
{
27
get
{ return null; }
28
}
29
}
30