Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-045.cs
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 () {
12         }
13
14         /// dummy comments
15         protected void Create (bool test) {
16                 Define (true);
17         }
18
19         private void Define (bool test) {
20         }
21
22         /// dummy comments
23         protected void Undefine (bool test) {
24         }
25
26         /// dummy comments
27         protected void Remove () {
28         }
29
30         /// dummy comments
31         public virtual void Destroy (bool test) {
32         }
33 }
34