summaryrefslogtreecommitdiff
path: root/mcs/tests/test-xml-033.cs
blob: 9c8e708e31a8feb6f41ee5eec9d82a23779902e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Compiler options: -doc:xml-033.xml

/// <summary>help text</summary>
public class MyClass
{
   /// <summary>help text</summary>
   public static void Main()
   {
   }

   /// <summary>help text</summary>
   public static explicit operator int(MyClass f)
   {
      return 0;
   }

   /// <summary>help text</summary>
   public static implicit operator char(MyClass f)
   {
      return ' ';
   }
}