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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-xml-019.cs
blob
81a563cd77d8afa5c3febecce15b2a00b458a1e5
1
// Compiler options: -doc:xml-019.xml
2
using
System
;
3
4
namespace
Testing
5
{
6
public class
Test
7
{
8
public static void
Main
()
9
{
10
}
11
12
/// <summary>
13
/// comment for unary operator
14
/// </summary>
15
public static bool operator
! (
Test t
)
16
{
17
return false
;
18
}
19
20
/// <summary>
21
/// comment for binary operator
22
/// </summary>
23
public static int operator
+ (
Test t
,
int
b
)
24
{
25
return
b
;
26
}
27
}
28
}
29