summaryrefslogtreecommitdiff
path: root/mcs/tests/test-xml-036.cs
blob: 3a66f9641df195ea7966e352168affe210071d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Compiler options: -doc:xml-036.xml -warn:1 -warnaserror
/// <summary><see cref="@true" />, <see cref="Test.@true" />, <see cref="@Whatever" /></summary>
public enum Test {
	/// <summary>Yes</summary>
	@true,
	/// <summary>Nope</summary>
	@false,
	/// <summary>Maybe</summary>
	Whatever
}

/// <summary><see cref="Foo.@true" /></summary>
public abstract class Foo {
	/// <summary>Foo</summary>
	public abstract void @true();
	/// main.
	public static void Main() {}
}