[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / tests / test-xml-055.cs
1 // Compiler options: -doc:xml-055.xml -warnaserror
2
3 namespace NAnt.Core.Filters
4 {
5         /// <summary>
6         /// Represent a chain of NAnt filters that can be applied to a 'Task'.
7         /// </summary>
8         /// <remarks>
9         /// <list type="bullet">
10         ///   <item>
11         ///       <description><see cref="NAnt.Core.Tasks.CopyTask"/></description>
12         ///   </item>
13         /// </list>
14         /// </remarks>
15         public class FilterChain
16         {
17                 static void Main ()
18                 {
19                 }
20         }
21 }
22
23 namespace NAnt.Core.Tasks
24 {
25         /// <summary>
26         /// Copies a file or set of files to a new file or directory.
27         /// </summary>
28         public class CopyTask { }
29 }