using System;
interface ITest {
bool True() { return true; }
}
class Test : ITest {
public static class Program
{
static ITest m_test = new Test();
static void Main() {
m_test.True();