GenericParameter.cs: override Module properly
[mcs.git] / tests / test-xml-036.cs
blob3a66f9641df195ea7966e352168affe210071d82
1 // Compiler options: -doc:xml-036.xml -warn:1 -warnaserror
2 /// <summary><see cref="@true" />, <see cref="Test.@true" />, <see cref="@Whatever" /></summary>
3 public enum Test {
4 /// <summary>Yes</summary>
5 @true,
6 /// <summary>Nope</summary>
7 @false,
8 /// <summary>Maybe</summary>
9 Whatever
12 /// <summary><see cref="Foo.@true" /></summary>
13 public abstract class Foo {
14 /// <summary>Foo</summary>
15 public abstract void @true();
16 /// main.
17 public static void Main() {}