Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-029.cs
1 // Compiler options: -doc:xml-029.xml
2 using System;
3
4 class Test1 {
5         /// <summary>
6         /// Some test documentation
7         /// </summary>
8         void Foo(){}
9
10         public static void Main () {}
11 }
12
13 /// <summary>
14 /// Publicly available interface
15 /// </summary>
16 public interface ITest2 {
17
18         /// <summary>
19         /// Some test documentation
20         /// </summary>
21         void Foo();
22
23         /// <summary>
24         /// Some test documentation
25         /// </summary>
26         long Bar { get; }
27
28         /// <summary>
29         /// Some test documentation
30         /// </summary>
31         event EventHandler EventRaised;
32 }
33
34