linux-packaging-mono/mcs/tests/test-xml-052.cs

18 lines
326 B
C#
Raw Normal View History

// Compiler options: -doc:xml-052.xml -warnaserror
// mcs /doc test for nested types
/// <summary>Global delegate</summary>
public delegate void GlobalDel ();
/// <summary>Outer class</summary>
public class Outer {
/// <summary>Inner Class</summary>
public delegate void Del ();
static void Main ()
{
}
}