Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-xml-051.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb1dfc289f9a6f45ac2ec6334342f32182dd8ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Compiler options: -doc:xml-051.xml -warnaserror
using log4net.Repository.Hierarchy;

namespace log4net
{
  /// <summary>
  /// <see cref="Repository.Hierarchy" />
  /// </summary>
  public interface IFoo {}
}

namespace log4net.Repository {
  /// <summary>
  /// <see cref="Hierarchy" />
  /// <see cref="System.Xml" />
  /// </summary>
  public interface ILog {
  }
}

namespace log4net.Repository.Hierarchy {
  /// <summary />
  public class Hierarchy {
    static void Main () {
    }
  }
}