2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-xml-045.cs
blob2e0f232fa5cee2318c20368ae8c10f26b70f5274
1 // Compiler options: -doc:xml-045.xml -warnaserror
2 /// <summary>
3 /// <see cref="Create" />
4 /// <see cref="Define" />
5 /// <see cref="Undefine" />
6 /// <see cref="Undefine(bool)" />
7 /// <see cref="Remove" />
8 /// <see cref="Destroy" />
9 /// </summary>
10 public class EntryPoint {
11 static void Main () {
14 /// dummy comments
15 protected void Create (bool test) {
16 Define (true);
19 private void Define (bool test) {
22 /// dummy comments
23 protected void Undefine (bool test) {
26 /// dummy comments
27 protected void Remove () {
30 /// dummy comments
31 public virtual void Destroy (bool test) {