// Compiler options: -doc:xml-010.xml
using System;
namespace Testing
{
public class Test
{
///
/// comment for const declaration
///
const string Constant = "CONSTANT STRING";
///
/// invalid comment for const declaration
///
const string Constant2 = "CONSTANT STRING";
/**
Javaism comment for const declaration
*/
const string Constant3 = "CONSTANT STRING";
public static void Main ()
{
}
}
}