// Compiler options: -doc:xml-004.xml
using System;
namespace Testing
{
///
/// comment for struct
///
public struct StructTest
{
}
///
/// incorrect markup comment for struct
///
public struct StructTest2
{
}
/**
Java style commet
*/
public struct StructTest3
{
}
public class Test
{
public static void Main ()
{
}
}
}