eol
[mcs.git] / tests / test-xml-019.cs
blob81a563cd77d8afa5c3febecce15b2a00b458a1e5
1 // Compiler options: -doc:xml-019.xml
2 using System;
4 namespace Testing
6 public class Test
8 public static void Main ()
12 /// <summary>
13 /// comment for unary operator
14 /// </summary>
15 public static bool operator ! (Test t)
17 return false;
20 /// <summary>
21 /// comment for binary operator
22 /// </summary>
23 public static int operator + (Test t, int b)
25 return b;