* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[mono.git] / mcs / tests / xml-019.cs
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