Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-xml-033.cs
1 // Compiler options: -doc:xml-033.xml
2
3 /// <summary>help text</summary>
4 public class MyClass
5 {
6    /// <summary>help text</summary>
7    public static void Main()
8    {
9    }
10
11    /// <summary>help text</summary>
12    public static explicit operator int(MyClass f)
13    {
14       return 0;
15    }
16
17    /// <summary>help text</summary>
18    public static implicit operator char(MyClass f)
19    {
20       return ' ';
21    }
22 }
23